]> git.tdb.fi Git - poefilter.git/blobdiff - source/iconshape.h
Add support for the new visual indicators
[poefilter.git] / source / iconshape.h
diff --git a/source/iconshape.h b/source/iconshape.h
new file mode 100644 (file)
index 0000000..b395ba5
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef ICONSHAPE_H_
+#define ICONSHAPE_H_
+
+#include <msp/strings/lexicalcast.h>
+
+enum IconShape
+{
+       CIRCLE,
+       TRIANGLE,
+       SQUARE,
+       DIAMOND,
+       HEXAGON,
+       STAR
+};
+
+void operator>>(const Msp::LexicalConverter &, IconShape &);
+void operator<<(Msp::LexicalConverter &, IconShape);
+
+#endif