cppjieba/globals.h
2013-07-11 14:07:27 +08:00

21 lines
302 B
C++

#ifndef GLOBALS_H
#define GLOBALS_H
#include <map>
#include <vector>
#include <string>
namespace CppJieba
{
//file path
const char * const DICT_FILE_PATH = "dict.txt";
//typedefs
typedef uint16_t ChUnicode;
typedef unsigned int uint;
typedef std::vector<std::string>::iterator VSI;
}
#endif