├── .gitignore ├── CMakeLists.txt ├── LICENSE_1_0.txt ├── README.md ├── any.hpp ├── test_any.cpp ├── test_shared_lib.cpp └── test_shared_lib.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/any/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/any/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/any/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/any/HEAD/README.md -------------------------------------------------------------------------------- /any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/any/HEAD/any.hpp -------------------------------------------------------------------------------- /test_any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/any/HEAD/test_any.cpp -------------------------------------------------------------------------------- /test_shared_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/any/HEAD/test_shared_lib.cpp -------------------------------------------------------------------------------- /test_shared_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelink2012/any/HEAD/test_shared_lib.hpp --------------------------------------------------------------------------------