Albert S
451c79088a
Not entirely ideal, since we may want to search for 'cake', and look at a preview for 'cake.txt' even if there is no 'cake' inside. But this will do for now
14 lines
211 B
C++
14 lines
211 B
C++
#ifndef SEARCHRESULT_H
|
|
#define SEARCHRESULT_H
|
|
#include "filedata.h"
|
|
|
|
class SearchResult
|
|
{
|
|
public:
|
|
FileData fileData;
|
|
QVector<unsigned int> pages;
|
|
bool wasContentSearch = false;
|
|
};
|
|
|
|
#endif // SEARCHRESULT_H
|