aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Graphics/Utf8.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-10-14 22:52:40 +0800
committerchai <chaifix@163.com>2018-10-14 22:52:40 +0800
commitb1bbc998960fff2169dc5a992c47d08723472f9b (patch)
tree220f3bd5de2266e248884e11161dd715d7632ef2 /src/libjin/Graphics/Utf8.h
parentfbf989f9950a38566e0fb0fc5b6a7aebc9f0fb45 (diff)
*直接渲染字符串
Diffstat (limited to 'src/libjin/Graphics/Utf8.h')
-rw-r--r--src/libjin/Graphics/Utf8.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/libjin/Graphics/Utf8.h b/src/libjin/Graphics/Utf8.h
deleted file mode 100644
index d2d11fb..0000000
--- a/src/libjin/Graphics/Utf8.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef __LIBJIN_UTF8_H
-#define __LIBJIN_UTF8_H
-
-namespace jin
-{
-namespace graphics
-{
-
- typedef unsigned int Codepoint;
-
- class Utf8
- {
- public:
- class Iterator
- {
- public:
- /* unicode codepoint */
- Codepoint get();
-
- private:
- friend class Utf8;
- Iterator(const Utf8&);
-
- const char* _p;
- const Utf8& _utf8;
- };
-
- /* rawıսij */
- Utf8(const char* raw, unsigned int length);
- Iterator getIterator();
-
- private:
- friend class Utf8::Iterator;
- ~Utf8();
-
- char* _raw;
- unsigned int _length;
-
- };
-
-}
-}
-
-#endif \ No newline at end of file