diff --git a/cli/filedata.h b/cli/filedata.h new file mode 100644 index 0000000..2418642 --- /dev/null +++ b/cli/filedata.h @@ -0,0 +1,13 @@ +#ifndef FILEDATA_H +#define FILEDATA_H +#include +class FileData +{ + public: + QString absPath; + uint mtime; + uint size; + QChar filetype; +}; + +#endif // FILEDATA_H