propane/unicode.h
2010-04-01 20:12:34 -04:00

20 lines
287 B
C++

#ifndef UNICODE_H
#include <stdint.h>
#include <vector>
typedef uint32_t unichar_t;
class unistring
{
public:
unistring & operator=(const char * ascii_str);
bool operator==(const char * ascii_str);
protected:
std::vector<unichar_t> chars;
};
#endif