2018-08-12 16:45:39 +02:00
|
|
|
#ifndef SEARCHRESULT_H
|
|
|
|
#define SEARCHRESULT_H
|
2019-04-22 21:07:41 +02:00
|
|
|
#include "filedata.h"
|
2018-08-12 16:45:39 +02:00
|
|
|
|
|
|
|
class SearchResult
|
|
|
|
{
|
|
|
|
public:
|
2019-04-22 21:07:41 +02:00
|
|
|
FileData fileData;
|
2019-04-26 15:31:42 +02:00
|
|
|
QVector<unsigned int> pages;
|
2019-04-22 21:07:41 +02:00
|
|
|
|
2018-08-12 16:45:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SEARCHRESULT_H
|