├── .github └── workflows │ ├── Ubuntu-clang-latest.yml │ └── Ubuntu-gcc-latest.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── badgeboostlic.svg ├── badgecpprequired.svg ├── badgemitlic.svg ├── conjure_enum_logo.png ├── fix8mt_Master_Logo_Green_Trans.png └── notminimalred.svg ├── cmake └── buildutils.cmake ├── examples ├── cbenchmark.cpp ├── cbenchmark.sh ├── example.cpp ├── srcloctest.cpp └── statictest.cpp ├── include └── fix8 │ ├── conjure_enum.hpp │ ├── conjure_enum_bitset.hpp │ ├── conjure_enum_ext.hpp │ └── conjure_type.hpp ├── reference └── source_location.md └── utests ├── edgetests.cpp └── unittests.cpp /.github/workflows/Ubuntu-clang-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/.github/workflows/Ubuntu-clang-latest.yml -------------------------------------------------------------------------------- /.github/workflows/Ubuntu-gcc-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/.github/workflows/Ubuntu-gcc-latest.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/badgeboostlic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/assets/badgeboostlic.svg -------------------------------------------------------------------------------- /assets/badgecpprequired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/assets/badgecpprequired.svg -------------------------------------------------------------------------------- /assets/badgemitlic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/assets/badgemitlic.svg -------------------------------------------------------------------------------- /assets/conjure_enum_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/assets/conjure_enum_logo.png -------------------------------------------------------------------------------- /assets/fix8mt_Master_Logo_Green_Trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/assets/fix8mt_Master_Logo_Green_Trans.png -------------------------------------------------------------------------------- /assets/notminimalred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/assets/notminimalred.svg -------------------------------------------------------------------------------- /cmake/buildutils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/cmake/buildutils.cmake -------------------------------------------------------------------------------- /examples/cbenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/examples/cbenchmark.cpp -------------------------------------------------------------------------------- /examples/cbenchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/examples/cbenchmark.sh -------------------------------------------------------------------------------- /examples/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/examples/example.cpp -------------------------------------------------------------------------------- /examples/srcloctest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/examples/srcloctest.cpp -------------------------------------------------------------------------------- /examples/statictest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/examples/statictest.cpp -------------------------------------------------------------------------------- /include/fix8/conjure_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/include/fix8/conjure_enum.hpp -------------------------------------------------------------------------------- /include/fix8/conjure_enum_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/include/fix8/conjure_enum_bitset.hpp -------------------------------------------------------------------------------- /include/fix8/conjure_enum_ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/include/fix8/conjure_enum_ext.hpp -------------------------------------------------------------------------------- /include/fix8/conjure_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/include/fix8/conjure_type.hpp -------------------------------------------------------------------------------- /reference/source_location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/reference/source_location.md -------------------------------------------------------------------------------- /utests/edgetests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/utests/edgetests.cpp -------------------------------------------------------------------------------- /utests/unittests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fix8mt/conjure_enum/HEAD/utests/unittests.cpp --------------------------------------------------------------------------------