Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
19
generator/dumper.hpp
Normal file
19
generator/dumper.hpp
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace features_dumper
|
||||
{
|
||||
void DumpTypes(std::string const & fPath);
|
||||
void DumpPrefixes(std::string const & fPath);
|
||||
|
||||
// Writes top maxTokensToShow tokens sorted by their
|
||||
// frequency, i.e. by the number of features in
|
||||
// an mwm that contain the token in their name.
|
||||
void DumpSearchTokens(std::string const & fPath, size_t maxTokensToShow);
|
||||
|
||||
// Writes the names of all features in the locale provided by lang
|
||||
// (e.g. "en", "ru", "sv"). If the locale is not recognized, writes all names
|
||||
// preceded by their locales.
|
||||
void DumpFeatureNames(std::string const & fPath, std::string const & lang);
|
||||
} // namespace features_dumper
|
||||
Loading…
Add table
Add a link
Reference in a new issue