privacore-open-source-searc.../FxExplicitKeywords.h
Ivan Skytte Jørgensen ab214632e7 Support extra keywords/temrs on pages
Based on content of explicit_keywords.txt, if presnet.
Terms are hashed into new hash group 11 (HASHGROUP_EXPLICIT_KEYWORDS), which is normalled weighed quite high.
2018-01-19 14:24:01 +01:00

15 lines
335 B
C++

//This file is developed by Privacore ApS and covered by the GNU Affero General Public License. See LICENSE for details.
#ifndef FX_EXTRA_KEYWORDS_H_
#define FX_EXTRA_KEYWORDS_H_
#include <string>
namespace ExplicitKeywords {
bool initialize();
void finalize();
std::string lookupExplicitKeywords(const std::string &url);
}
#endif