├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Main.cpp ├── Primitives.cpp ├── README.md └── Reflect.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preshing/FlexibleReflection/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preshing/FlexibleReflection/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preshing/FlexibleReflection/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preshing/FlexibleReflection/HEAD/Main.cpp -------------------------------------------------------------------------------- /Primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preshing/FlexibleReflection/HEAD/Primitives.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preshing/FlexibleReflection/HEAD/README.md -------------------------------------------------------------------------------- /Reflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preshing/FlexibleReflection/HEAD/Reflect.h --------------------------------------------------------------------------------