├── .gitattributes ├── .gitignore ├── Application ├── CMakeLists.txt └── main.cpp ├── CMakeLists.txt ├── Interface ├── CMakeLists.txt ├── common.hpp ├── plugin.cpp ├── plugin.hpp ├── plugininterface.cpp ├── plugininterface.hpp ├── pluginmanager.cpp ├── pluginmanager.hpp └── third-party │ └── json │ └── json.hpp ├── LICENSE ├── Plugins ├── PluginOne │ ├── CMakeLists.txt │ ├── common.hpp │ ├── interface.cpp │ ├── interface.hpp │ ├── pluginone.cpp │ └── pluginone.hpp └── PluginTwo │ ├── CMakeLists.txt │ ├── common.hpp │ ├── interface.cpp │ ├── interface.hpp │ ├── plugintwo.cpp │ └── plugintwo.hpp └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/.gitignore -------------------------------------------------------------------------------- /Application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Application/CMakeLists.txt -------------------------------------------------------------------------------- /Application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Application/main.cpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Interface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Interface/CMakeLists.txt -------------------------------------------------------------------------------- /Interface/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Interface/common.hpp -------------------------------------------------------------------------------- /Interface/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Interface/plugin.cpp -------------------------------------------------------------------------------- /Interface/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Interface/plugin.hpp -------------------------------------------------------------------------------- /Interface/plugininterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Interface/plugininterface.cpp -------------------------------------------------------------------------------- /Interface/plugininterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Interface/plugininterface.hpp -------------------------------------------------------------------------------- /Interface/pluginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Interface/pluginmanager.cpp -------------------------------------------------------------------------------- /Interface/pluginmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Interface/pluginmanager.hpp -------------------------------------------------------------------------------- /Interface/third-party/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Interface/third-party/json/json.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/PluginOne/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginOne/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/PluginOne/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginOne/common.hpp -------------------------------------------------------------------------------- /Plugins/PluginOne/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginOne/interface.cpp -------------------------------------------------------------------------------- /Plugins/PluginOne/interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginOne/interface.hpp -------------------------------------------------------------------------------- /Plugins/PluginOne/pluginone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginOne/pluginone.cpp -------------------------------------------------------------------------------- /Plugins/PluginOne/pluginone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginOne/pluginone.hpp -------------------------------------------------------------------------------- /Plugins/PluginTwo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginTwo/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/PluginTwo/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginTwo/common.hpp -------------------------------------------------------------------------------- /Plugins/PluginTwo/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginTwo/interface.cpp -------------------------------------------------------------------------------- /Plugins/PluginTwo/interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginTwo/interface.hpp -------------------------------------------------------------------------------- /Plugins/PluginTwo/plugintwo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginTwo/plugintwo.cpp -------------------------------------------------------------------------------- /Plugins/PluginTwo/plugintwo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/Plugins/PluginTwo/plugintwo.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Dynamic-Application/HEAD/README.md --------------------------------------------------------------------------------