mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
20 lines
422 B
C++
20 lines
422 B
C++
/* This file is (c) 2015 Zhe Wang <0x1997@gmail.com>
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
#ifndef __CHINESE_HH_INCLUDED__
|
|
#define __CHINESE_HH_INCLUDED__
|
|
|
|
#include <map>
|
|
#include "config.hh"
|
|
#include "dictionary.hh"
|
|
|
|
/// Chinese character conversion support.
|
|
namespace Chinese {
|
|
|
|
std::vector< sptr< Dictionary::Class > > makeDictionaries( Config::Chinese const & )
|
|
;
|
|
|
|
}
|
|
|
|
#endif
|