mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
26 lines
582 B
C++
26 lines
582 B
C++
#ifndef __SLOB_HH_INCLUDED__
|
|
#define __SLOB_HH_INCLUDED__
|
|
|
|
#ifdef MAKE_ZIM_SUPPORT
|
|
|
|
#include "dictionary.hh"
|
|
|
|
/// Support for the Slob dictionaries.
|
|
namespace Slob {
|
|
|
|
using std::vector;
|
|
using std::string;
|
|
|
|
vector< sptr< Dictionary::Class > > makeDictionaries(
|
|
vector< string > const & fileNames,
|
|
string const & indicesDir,
|
|
Dictionary::Initializing &,
|
|
unsigned maxHeadwordsToExpand )
|
|
;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif // __SLOB_HH_INCLUDED__
|