ab214632e7
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.
15 lines
335 B
C++
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
|