Code

Switched three verbs/icons over to standard names and thus themed loading
[inkscape.git] / src / unicoderange.h
1 #include <glib-object.h>
2 #include<vector>
4 struct Urange{
5         gchar* start;
6         gchar* end;
7 };
9 class UnicodeRange{
10 public:
11 UnicodeRange(const gchar* val);
12 int add_range(gchar* val);
13 bool contains(gchar unicode);
15 private:
16 std::vector<Urange> range;
17 std::vector<gunichar> unichars;
18 };