├── .gitignore ├── CppReflect.cpp ├── CppReflect.h ├── MacroHelpers.h ├── README.md ├── TypeTraits.h ├── license.txt ├── pugixml ├── pugiconfig.hpp ├── pugixml.cpp ├── pugixml.hpp └── pugixml.natvis ├── test.xml ├── testcppreflect.cpp ├── testcppreflect.sln ├── testcppreflect.vcxproj └── testcppreflect.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | /bin 3 | /obj 4 | *.user 5 | -------------------------------------------------------------------------------- /CppReflect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/CppReflect.cpp -------------------------------------------------------------------------------- /CppReflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/CppReflect.h -------------------------------------------------------------------------------- /MacroHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/MacroHelpers.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/README.md -------------------------------------------------------------------------------- /TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/TypeTraits.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/license.txt -------------------------------------------------------------------------------- /pugixml/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/pugixml/pugiconfig.hpp -------------------------------------------------------------------------------- /pugixml/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/pugixml/pugixml.cpp -------------------------------------------------------------------------------- /pugixml/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/pugixml/pugixml.hpp -------------------------------------------------------------------------------- /pugixml/pugixml.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/pugixml/pugixml.natvis -------------------------------------------------------------------------------- /test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/test.xml -------------------------------------------------------------------------------- /testcppreflect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/testcppreflect.cpp -------------------------------------------------------------------------------- /testcppreflect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/testcppreflect.sln -------------------------------------------------------------------------------- /testcppreflect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/testcppreflect.vcxproj -------------------------------------------------------------------------------- /testcppreflect.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/TestCppReflect/HEAD/testcppreflect.vcxproj.filters --------------------------------------------------------------------------------