I\'m working on a project where I would find a basic plugin system useful. Essentially, I create the base class and can provide this base class to a plugin developer. Then t
You can compile plugin as dynamic/shared library put it into plugin folder and then from your code dynamicly load all dll files from plugin folder.
You may check source code for programs like GIMP to check how they implement plugis.