X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Ficonshape.h;fp=source%2Ficonshape.h;h=b395ba542c48462fec5d19591e5d1282c0f0452d;hb=b4df72b647f47c25a0ccada832eda9bc0dfb5504;hp=0000000000000000000000000000000000000000;hpb=e1d95ecdf6c4b1a29d5ef32d493f1266be57d642;p=poefilter.git diff --git a/source/iconshape.h b/source/iconshape.h new file mode 100644 index 0000000..b395ba5 --- /dev/null +++ b/source/iconshape.h @@ -0,0 +1,19 @@ +#ifndef ICONSHAPE_H_ +#define ICONSHAPE_H_ + +#include + +enum IconShape +{ + CIRCLE, + TRIANGLE, + SQUARE, + DIAMOND, + HEXAGON, + STAR +}; + +void operator>>(const Msp::LexicalConverter &, IconShape &); +void operator<<(Msp::LexicalConverter &, IconShape); + +#endif