summaryrefslogtreecommitdiff
path: root/test/enumDetailsData.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-04-29 19:07:11 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2023-04-29 19:07:11 +0100
commit5a0b3927a33807cca4c77c40eb873f8a3b51b0b0 (patch)
tree4af0585ee8f8f468ab10c0a4fe9994fb30b79599 /test/enumDetailsData.h
parentDunno how, but some DOS new lines got in here! (diff)
downloadilt-5a0b3927a33807cca4c77c40eb873f8a3b51b0b0.tar.bz2
ilt-5a0b3927a33807cca4c77c40eb873f8a3b51b0b0.tar.xz
ilt-5a0b3927a33807cca4c77c40eb873f8a3b51b0b0.zip
Drop .hpp for header only things
Half of them acquired a .cpp part anyway
Diffstat (limited to 'test/enumDetailsData.h')
-rw-r--r--test/enumDetailsData.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/enumDetailsData.h b/test/enumDetailsData.h
new file mode 100644
index 0000000..713d742
--- /dev/null
+++ b/test/enumDetailsData.h
@@ -0,0 +1,20 @@
+#pragma once
+#include <enumDetails.h>
+
+enum GlobalUnscoped { aa, b, c };
+enum class GlobalScoped { aa, b, c };
+namespace ns {
+ enum Unscoped { aa, b, c };
+ enum class Scoped { aa, b, c };
+}
+namespace test1 {
+ enum class DefaultDense { a, bee, ci, de };
+}
+namespace test2 {
+ enum class NumberedSparse { a = 0, bee = 3, ci = -20, de = 100 };
+}
+
+template<> struct EnumValueCollection<test2::NumberedSparse> {
+ // Any ordered integer_sequence which includes all enumeration values
+ using Vs = std::integer_sequence<int, -100, -20, 0, 3, 10, 100, 1000>;
+};