├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── ajo ├── nonkeyword-arguments-too.cc ├── overload-resolution-safe.cc └── proof-of-concept.cc ├── argo ├── .clang-format └── argo.hpp ├── examples ├── foo.cpp ├── foo.hpp ├── simple_example.cpp └── test_foo.cpp └── tests ├── test1.cpp ├── test2.cpp ├── test3.cpp └── test4.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/README.md -------------------------------------------------------------------------------- /ajo/nonkeyword-arguments-too.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/ajo/nonkeyword-arguments-too.cc -------------------------------------------------------------------------------- /ajo/overload-resolution-safe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/ajo/overload-resolution-safe.cc -------------------------------------------------------------------------------- /ajo/proof-of-concept.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/ajo/proof-of-concept.cc -------------------------------------------------------------------------------- /argo/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/argo/.clang-format -------------------------------------------------------------------------------- /argo/argo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/argo/argo.hpp -------------------------------------------------------------------------------- /examples/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/examples/foo.cpp -------------------------------------------------------------------------------- /examples/foo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/examples/foo.hpp -------------------------------------------------------------------------------- /examples/simple_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/examples/simple_example.cpp -------------------------------------------------------------------------------- /examples/test_foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/examples/test_foo.cpp -------------------------------------------------------------------------------- /tests/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/tests/test1.cpp -------------------------------------------------------------------------------- /tests/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/tests/test2.cpp -------------------------------------------------------------------------------- /tests/test3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/tests/test3.cpp -------------------------------------------------------------------------------- /tests/test4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmpowell77/LIAW_2017_param/HEAD/tests/test4.cpp --------------------------------------------------------------------------------