├── CMakeLists.txt ├── Config.cmake.in ├── License.txt ├── README.md ├── examples ├── factories │ ├── AggregateFactory.h │ ├── CMakeLists.txt │ ├── README.md │ ├── ThingBuffer.h │ ├── ThingFactory.h │ ├── TrivialObjects.h │ └── main.cpp └── type_association │ ├── CMakeLists.txt │ ├── README.md │ ├── associations.h │ └── main.cpp ├── include └── fr │ └── types │ ├── AggregateType.h │ ├── Concepts.h │ └── Typelist.h └── test ├── AggregateType.cpp ├── CMakeLists.txt ├── Concepts.cpp └── TypelistTest.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | 4 | -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/README.md -------------------------------------------------------------------------------- /examples/factories/AggregateFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/factories/AggregateFactory.h -------------------------------------------------------------------------------- /examples/factories/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/factories/CMakeLists.txt -------------------------------------------------------------------------------- /examples/factories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/factories/README.md -------------------------------------------------------------------------------- /examples/factories/ThingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/factories/ThingBuffer.h -------------------------------------------------------------------------------- /examples/factories/ThingFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/factories/ThingFactory.h -------------------------------------------------------------------------------- /examples/factories/TrivialObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/factories/TrivialObjects.h -------------------------------------------------------------------------------- /examples/factories/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/factories/main.cpp -------------------------------------------------------------------------------- /examples/type_association/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/type_association/CMakeLists.txt -------------------------------------------------------------------------------- /examples/type_association/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/type_association/README.md -------------------------------------------------------------------------------- /examples/type_association/associations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/type_association/associations.h -------------------------------------------------------------------------------- /examples/type_association/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/examples/type_association/main.cpp -------------------------------------------------------------------------------- /include/fr/types/AggregateType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/include/fr/types/AggregateType.h -------------------------------------------------------------------------------- /include/fr/types/Concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/include/fr/types/Concepts.h -------------------------------------------------------------------------------- /include/fr/types/Typelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/include/fr/types/Typelist.h -------------------------------------------------------------------------------- /test/AggregateType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/test/AggregateType.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Concepts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/test/Concepts.cpp -------------------------------------------------------------------------------- /test/TypelistTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyingRhenquest/types/HEAD/test/TypelistTest.cpp --------------------------------------------------------------------------------