├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── doc └── Doxyfile ├── example ├── CMakeLists.txt └── example.cpp ├── include ├── detail │ ├── facet14.hpp │ ├── facet17.hpp │ ├── flags_storage.hpp │ ├── meta14.hpp │ └── meta17.hpp └── typed_flags.hpp └── test ├── CMakeLists.txt └── tester.cpp /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/README.md -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/example/example.cpp -------------------------------------------------------------------------------- /include/detail/facet14.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/include/detail/facet14.hpp -------------------------------------------------------------------------------- /include/detail/facet17.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/include/detail/facet17.hpp -------------------------------------------------------------------------------- /include/detail/flags_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/include/detail/flags_storage.hpp -------------------------------------------------------------------------------- /include/detail/meta14.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/include/detail/meta14.hpp -------------------------------------------------------------------------------- /include/detail/meta17.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/include/detail/meta17.hpp -------------------------------------------------------------------------------- /include/typed_flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/include/typed_flags.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compmaniak/typed_flags/HEAD/test/tester.cpp --------------------------------------------------------------------------------