15 行
195 B
C
15 行
195 B
C
|
#ifndef SEARCHRESULT_H
|
||
|
#define SEARCHRESULT_H
|
||
|
#include <QString>
|
||
|
|
||
|
class SearchResult
|
||
|
{
|
||
|
public:
|
||
|
unsigned int page;
|
||
|
QString path;
|
||
|
uint64_t mtime;
|
||
|
SearchResult();
|
||
|
};
|
||
|
|
||
|
#endif // SEARCHRESULT_H
|