cppjieba/src/globals.h
2013-07-12 17:47:39 +08:00

21 lines
322 B
C++

#ifndef CPPJIEBA_GLOBALS_H
#define CPPJIEBA_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