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