qswiki/searchresult.h

11 lines
166 B
C++

#ifndef SEARCHRESULT_H
#define SEARCHRESULT_H
#include <string>
class SearchResult
{
public:
std::string query;
std::string pagename;
};
#endif // SEARCHRESULT_H