goldendict-ng/src/dict/zim.hh
shenleban tongying 7feb883408
refactor: move all dictionary parsers to /src/dict/
If a file contains `makeDictionaries` then it belongs to there
2023-04-17 16:55:34 -04:00

26 lines
554 B
C++

#ifndef __ZIM_HH_INCLUDED__
#define __ZIM_HH_INCLUDED__
#ifdef MAKE_ZIM_SUPPORT
#include "dictionary.hh"
/// Support for the Zim dictionaries.
namespace Zim {
using std::vector;
using std::string;
vector< sptr< Dictionary::Class > > makeDictionaries(
vector< string > const & fileNames,
string const & indicesDir,
Dictionary::Initializing &,
unsigned maxHeadwordsToExpand )
;
}
#endif
#endif