├── .gitignore ├── CMakeLists.txt ├── README.md ├── TODO.md ├── include └── scy │ └── pluga │ └── pluga.h ├── src └── pluga.cpp └── tests ├── CMakeLists.txt ├── plugatestplugin ├── CMakeLists.txt ├── testplugin.cpp ├── testplugin.h └── testpluginapi.h └── plugatests.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | ~* 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/TODO.md -------------------------------------------------------------------------------- /include/scy/pluga/pluga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/include/scy/pluga/pluga.h -------------------------------------------------------------------------------- /src/pluga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/src/pluga.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/plugatestplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/tests/plugatestplugin/CMakeLists.txt -------------------------------------------------------------------------------- /tests/plugatestplugin/testplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/tests/plugatestplugin/testplugin.cpp -------------------------------------------------------------------------------- /tests/plugatestplugin/testplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/tests/plugatestplugin/testplugin.h -------------------------------------------------------------------------------- /tests/plugatestplugin/testpluginapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/tests/plugatestplugin/testpluginapi.h -------------------------------------------------------------------------------- /tests/plugatests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcey/pluga/HEAD/tests/plugatests.cpp --------------------------------------------------------------------------------