aboutsummaryrefslogtreecommitdiffstats
path: root/include/AnnotationTypes.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/AnnotationTypes.hpp')
-rw-r--r--include/AnnotationTypes.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/AnnotationTypes.hpp b/include/AnnotationTypes.hpp
new file mode 100644
index 0000000..d61de08
--- /dev/null
+++ b/include/AnnotationTypes.hpp
@@ -0,0 +1,23 @@
+#if ( !defined(ANNOTATIONTYPES_HPP) || defined(GENERATE_ENUM_STRINGS) )
+
+#if (!defined(GENERATE_ENUM_STRINGS))
+#define ANNOTATIONTYPES_HPP
+#endif
+
+#include "Enum2String.hpp"
+
+///////////////////////////////
+// The enum declaration
+///////////////////////////////
+namespace Reply {
+ BEGIN_ENUM(AnnotationType) {
+ DECL_ENUM_ELEMENT(none),
+ DECL_ENUM_ELEMENT(bold),
+ DECL_ENUM_ELEMENT(italics),
+ DECL_ENUM_ELEMENT(strikethrough),
+ DECL_ENUM_ELEMENT(underline),
+ DECL_ENUM_ELEMENT(link),
+ } END_ENUM(AnnotationType)
+}
+
+#endif // (!defined(ANNOTATIONTYPES_HPP) || defined(GENERATE_ENUM_STRINGS)) \ No newline at end of file