looqs/shared/searchresult.h
Albert S 10d61acbd0 shared,gui: SearchResult: remove page vector
Since the previous commit we don't group the results
anymore, making the vector redundant
2022-08-24 00:00:11 +02:00

14 regels
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