goldendict-ng/src/dict/dictserver.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
397 B
C++
Raw Normal View History

2014-04-30 12:55:53 +00:00
#ifndef __DICTSERVER_HH__INCLUDED__
#define __DICTSERVER_HH__INCLUDED__
#include "dict/dictionary.hh"
2014-04-30 12:55:53 +00:00
#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 );
} // namespace DictServer
#endif // __DICTSERVER_HH__INCLUDED__