looqs/gui/searchresult.h

17 lines
228 B
C
Raw Normal View History

#ifndef SEARCHRESULT_H
#define SEARCHRESULT_H
#include <QString>
class SearchResult
{
public:
unsigned int page;
QString path;
uint64_t mtime;
2019-04-06 17:13:38 +02:00
uint64_t size;
QChar filetype;
SearchResult();
};
#endif // SEARCHRESULT_H