mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-18 23:54:05 +00:00
18 lines
384 B
C++
18 lines
384 B
C++
|
#ifndef __GLS_HH_INCLUDED__
|
||
|
#define __GLS_HH_INCLUDED__
|
||
|
|
||
|
#include "dictionary.hh"
|
||
|
|
||
|
/// Support for the Dabilon source .GLS files.
|
||
|
namespace Gls {
|
||
|
|
||
|
using std::vector;
|
||
|
using std::string;
|
||
|
|
||
|
vector< sptr< Dictionary::Class > >
|
||
|
makeDictionaries( vector< string > const & fileNames, string const & indicesDir, Dictionary::Initializing & );
|
||
|
|
||
|
} // namespace Gls
|
||
|
|
||
|
#endif // __GLS_HH_INCLUDED__
|