mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
15 lines
189 B
C++
15 lines
189 B
C++
#ifndef GLOBALS_H
|
|
#define GLOBALS_H
|
|
|
|
#include <map>
|
|
|
|
//file path
|
|
const char * const DICT_FILE_PATH = "dict.txt";
|
|
|
|
//typedefs
|
|
typedef uint16_t ChUnicode;
|
|
typedef unsigned int uint;
|
|
|
|
|
|
#endif
|