├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTING.md ├── README.md ├── cmake └── xnode-config.cmake.in ├── doc ├── CHANGELOG ├── LICENSE.txt └── type_conversions.md ├── include ├── details │ ├── property_list.h │ └── xnode_builtins.h ├── xarray.h ├── xnode.h ├── xnode_long_double.h ├── xnode_type_ext.h ├── xnode_utils.h └── xobject.h ├── make.cmd ├── makefile.mgw ├── test.sh └── test ├── CMakeLists.txt ├── cunit.h ├── property_list_test.cpp ├── xarray_of_test.cpp ├── xarray_of_versions_test.cpp ├── xarray_test.cpp ├── xnode_convert_test.cpp ├── xnode_overflow_test.cpp ├── xnode_test.cpp ├── xnode_tree_test.cpp ├── xnode_type_test.cpp └── xobject_test.cpp /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/README.md -------------------------------------------------------------------------------- /cmake/xnode-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/cmake/xnode-config.cmake.in -------------------------------------------------------------------------------- /doc/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/doc/CHANGELOG -------------------------------------------------------------------------------- /doc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/doc/LICENSE.txt -------------------------------------------------------------------------------- /doc/type_conversions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/doc/type_conversions.md -------------------------------------------------------------------------------- /include/details/property_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/include/details/property_list.h -------------------------------------------------------------------------------- /include/details/xnode_builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/include/details/xnode_builtins.h -------------------------------------------------------------------------------- /include/xarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/include/xarray.h -------------------------------------------------------------------------------- /include/xnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/include/xnode.h -------------------------------------------------------------------------------- /include/xnode_long_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/include/xnode_long_double.h -------------------------------------------------------------------------------- /include/xnode_type_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/include/xnode_type_ext.h -------------------------------------------------------------------------------- /include/xnode_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/include/xnode_utils.h -------------------------------------------------------------------------------- /include/xobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/include/xobject.h -------------------------------------------------------------------------------- /make.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/make.cmd -------------------------------------------------------------------------------- /makefile.mgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/makefile.mgw -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test.sh -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/cunit.h -------------------------------------------------------------------------------- /test/property_list_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/property_list_test.cpp -------------------------------------------------------------------------------- /test/xarray_of_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/xarray_of_test.cpp -------------------------------------------------------------------------------- /test/xarray_of_versions_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/xarray_of_versions_test.cpp -------------------------------------------------------------------------------- /test/xarray_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/xarray_test.cpp -------------------------------------------------------------------------------- /test/xnode_convert_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/xnode_convert_test.cpp -------------------------------------------------------------------------------- /test/xnode_overflow_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/xnode_overflow_test.cpp -------------------------------------------------------------------------------- /test/xnode_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/xnode_test.cpp -------------------------------------------------------------------------------- /test/xnode_tree_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/xnode_tree_test.cpp -------------------------------------------------------------------------------- /test/xnode_type_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/xnode_type_test.cpp -------------------------------------------------------------------------------- /test/xobject_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpiotr/xnode/HEAD/test/xobject_test.cpp --------------------------------------------------------------------------------