aboutsummaryrefslogblamecommitdiffstats
path: root/include/AnnotationTypes.hpp
blob: d61de08fa179b0301dd35c57a97f5db68053659e (plain) (tree)






















                                                                          
#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))