aboutsummaryrefslogtreecommitdiff
path: root/buildtools/codegen/tests/examples/TestEnum.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-05-29 21:57:53 -0700
committerrtk0c <[email protected]>2022-05-29 21:57:53 -0700
commit6f29abe5571eb68207986bdadb97b207264ac958 (patch)
treee30d5d36e550e8f08cc832f905c97cbeba3515aa /buildtools/codegen/tests/examples/TestEnum.hpp
parent5112858f9a4adcf76240bcddad19179a5c56d4f3 (diff)
Changeset: 49 Convert codegen output to use template specialization
Diffstat (limited to 'buildtools/codegen/tests/examples/TestEnum.hpp')
-rw-r--r--buildtools/codegen/tests/examples/TestEnum.hpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/buildtools/codegen/tests/examples/TestEnum.hpp b/buildtools/codegen/tests/examples/TestEnum.hpp
deleted file mode 100644
index 6b4ab33..0000000
--- a/buildtools/codegen/tests/examples/TestEnum.hpp
+++ /dev/null
@@ -1,23 +0,0 @@
-#include "MacrosCodegen.hpp"
-
-enum MyEnum {
- EnumElement1,
- EnumElement2,
- EnumElement3,
-};
-BRUSSEL_ENUM(MyEnum, ToString FromString);
-
-enum CountedEnumAll {
- CEA_Foo,
- CEA_Bar,
- CEA_COUNT,
-};
-BRUSSEL_ENUM(CountedEnumAll, ToString FromString);
-
-enum CountedEnum {
- CE_Foo,
- CE_Bar,
- CE_FooBar,
- CE_COUNT,
-};
-BRUSSEL_ENUM(CountedEnum, ToString FromString ExcludeHeuristics);