move more files to shared project ; searchresultt.h: use filedata.h

This commit is contained in:
2019-04-22 21:07:41 +02:00
parent 6b94b8f619
commit 326c12ca80
17 changed files with 467 additions and 94 deletions

14
shared/filedata.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef FILEDATA_H
#define FILEDATA_H
#include <QString>
class FileData
{
public:
QString absPath;
uint mtime;
uint size;
QChar filetype;
};
#endif // FILEDATA_H