]> git.tdb.fi Git - poefilter.git/blob - source/iconshape.h
Add support for the new visual indicators
[poefilter.git] / source / iconshape.h
1 #ifndef ICONSHAPE_H_
2 #define ICONSHAPE_H_
3
4 #include <msp/strings/lexicalcast.h>
5
6 enum IconShape
7 {
8         CIRCLE,
9         TRIANGLE,
10         SQUARE,
11         DIAMOND,
12         HEXAGON,
13         STAR
14 };
15
16 void operator>>(const Msp::LexicalConverter &, IconShape &);
17 void operator<<(Msp::LexicalConverter &, IconShape);
18
19 #endif