qswiki/searchresult.h

11 lines
166 B
C
Raw Normal View History

2018-11-03 17:12:20 +01:00
#ifndef SEARCHRESULT_H
#define SEARCHRESULT_H
#include <string>
class SearchResult
{
public:
std::string query;
std::string pagename;
};
#endif // SEARCHRESULT_H