1 #ifndef __SLOB_HH_INCLUDED__ 2 #define __SLOB_HH_INCLUDED__ 3 4 #ifdef MAKE_ZIM_SUPPORT 5 6 #include "dictionary.hh" 7 8 /// Support for the Slob dictionaries. 9 namespace Slob { 10 11 using std::vector; 12 using std::string; 13 14 vector< sptr< Dictionary::Class > > makeDictionaries( 15 vector< string > const & fileNames, 16 string const & indicesDir, 17 Dictionary::Initializing &, 18 unsigned maxHeadwordsToExpand ) 19 THROW_SPEC( std::exception ); 20 21 } 22 23 #endif 24 25 #endif // __SLOB_HH_INCLUDED__ 26