1 /* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org> 2 * Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */ 3 4 #ifndef __DSL_HH_INCLUDED__ 5 #define __DSL_HH_INCLUDED__ 6 7 #include "dictionary.hh" 8 9 /// Support for the ABBYY Lingvo .DSL files. 10 namespace Dsl { 11 12 using std::vector; 13 using std::string; 14 15 vector< sptr< Dictionary::Class > > makeDictionaries( 16 vector< string > const & fileNames, 17 string const & indicesDir, 18 Dictionary::Initializing &, 19 int maxPictureWidth, unsigned int maxHeadwordSize ) 20 THROW_SPEC( std::exception ); 21 22 } 23 24 #endif 25