mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 08:34:08 +00:00
20 lines
434 B
C++
20 lines
434 B
C++
|
#ifndef __DICTSERVER_HH__INCLUDED__
|
||
|
#define __DICTSERVER_HH__INCLUDED__
|
||
|
|
||
|
#include "dictionary.hh"
|
||
|
#include "config.hh"
|
||
|
|
||
|
/// Support for servers supporting DICT protocol.
|
||
|
namespace DictServer {
|
||
|
|
||
|
using std::vector;
|
||
|
using std::string;
|
||
|
|
||
|
vector< sptr< Dictionary::Class > > makeDictionaries(
|
||
|
Config::DictServers const & servers )
|
||
|
throw( std::exception );
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __DICTSERVER_HH__INCLUDED__
|