goldendict-ng/dictserver.hh

20 lines
411 B
C++
Raw Normal View History

2014-04-30 12:55:53 +00:00
#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 )
2022-01-09 08:35:07 +00:00
;
2014-04-30 12:55:53 +00:00
}
#endif // __DICTSERVER_HH__INCLUDED__