├── .clang-format ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include └── painless │ └── parameter.h └── tests ├── .ignore ├── CMakeLists.txt ├── example.cpp ├── interactive.cpp ├── main.cpp └── parameter.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/README.md -------------------------------------------------------------------------------- /include/painless/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/include/painless/parameter.h -------------------------------------------------------------------------------- /tests/.ignore: -------------------------------------------------------------------------------- 1 | Catch2 2 | -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/tests/example.cpp -------------------------------------------------------------------------------- /tests/interactive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/tests/interactive.cpp -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkdp/painless/HEAD/tests/parameter.cpp --------------------------------------------------------------------------------