]> git.tdb.fi Git - poefilter.git/blobdiff - source/effectcolor.h
Add support for the new visual indicators
[poefilter.git] / source / effectcolor.h
diff --git a/source/effectcolor.h b/source/effectcolor.h
new file mode 100644 (file)
index 0000000..e51f1be
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef EFFECTCOLOR_H_
+#define EFFECTCOLOR_H_
+
+#include <msp/strings/lexicalcast.h>
+
+enum EffectColor
+{
+       WHITE,
+       RED,
+       GREEN,
+       BLUE,
+       BROWN,
+       YELLOW
+};
+
+void operator>>(const Msp::LexicalConverter &, EffectColor &);
+void operator<<(Msp::LexicalConverter &, EffectColor);
+
+#endif