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 __L9SA_HH_INCLUDED__ 5 #define __L9SA_HH_INCLUDED__ 6 7 #include "dictionary.hh" 8 9 /// Support for LSA (.dat, .lsa) audio archives of the Lingo program. 10 namespace Lsa { 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 THROW_SPEC( std::exception ); 20 21 } 22 23 #endif 24