#include "converter.h" #include "system.h" #include "metafile.h" #include extern std::ofstream frostLogFile; extern bool frostLogging; file_descriptor::file_descriptor(const std::string& p): m_path(p) {} metafile::metafile(): m_files(), m_totalSize(0) {} inline int to_lower(char x) { return ((0x40 < x) && (x < 0x5b)) ? (x + 0x20) : x; } bool file_descriptor::operator< (const file_descriptor& fd) const { unsigned n = m_path.size() < fd.m_path.size() ? m_path.size() : fd.m_path.size(); for(unsigned i=0; i