mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
20 lines
398 B
C++
20 lines
398 B
C++
/************************************
|
|
* file enc : utf8
|
|
* author : wuyanyi09@gmail.com
|
|
************************************/
|
|
#ifndef CPPCOMMON_TYPEDEFS_H
|
|
#define CPPCOMMON_TYPEDEFS_H
|
|
|
|
#include <stdint.h>
|
|
#include <vector>
|
|
#include <sys/types.h>
|
|
|
|
namespace CPPCOMMON
|
|
{
|
|
typedef std::vector<uint16_t> Unicode;
|
|
typedef std::vector<uint16_t>::const_iterator UnicodeConstIterator;
|
|
}
|
|
|
|
|
|
#endif
|