Code

GSoC C++-ificiation merge and cleanup.
[inkscape.git] / src / unicoderange.h
index 656f53c50e92df2d19439aef7a3ef8ec108a328d..b0c7f34a92fea5ae5dd41bbadaab01ab3f031fe5 100644 (file)
@@ -1,5 +1,6 @@
 #include <glib-object.h>
 #include<vector>
+#include <glibmm.h>
 
 struct Urange{
        gchar* start;
@@ -11,6 +12,8 @@ public:
 UnicodeRange(const gchar* val);
 int add_range(gchar* val);
 bool contains(gchar unicode);
+Glib::ustring attribute_string();
+gunichar sample_glyph();
 
 private:
 std::vector<Urange> range;