mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-18 19:44:06 +00:00
b5349478cf
The next commit will add `.git-blame-ignore-revs` https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view
24 lines
580 B
C++
24 lines
580 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 );
|
|
|
|
} // namespace Zim
|
|
|
|
#endif
|
|
|
|
#endif
|