Albert S
10d61acbd0
Since the previous commit we don't group the results anymore, making the vector redundant
14 righe
201 B
C++
14 righe
201 B
C++
#ifndef SEARCHRESULT_H
|
|
#define SEARCHRESULT_H
|
|
#include "filedata.h"
|
|
|
|
class SearchResult
|
|
{
|
|
public:
|
|
FileData fileData;
|
|
unsigned int page;
|
|
bool wasContentSearch = false;
|
|
};
|
|
|
|
#endif // SEARCHRESULT_H
|