Make searcher's method reset private.

This commit is contained in:
Matthieu Gautier 2018-03-12 17:27:21 +01:00
parent b6ba10af2a
commit cc38d0e5e4
1 changed files with 4 additions and 1 deletions

View File

@ -189,7 +189,6 @@ class Searcher
* Only used by getHtml. * Only used by getHtml.
*/ */
bool setSearchProtocolPrefix(const std::string prefix); bool setSearchProtocolPrefix(const std::string prefix);
void reset();
#ifdef ENABLE_CTPP2 #ifdef ENABLE_CTPP2
/** /**
@ -217,6 +216,10 @@ class Searcher
unsigned int resultStart; unsigned int resultStart;
unsigned int resultEnd; unsigned int resultEnd;
std::string contentHumanReadableId; std::string contentHumanReadableId;
private:
void reset();
}; };