Cross-platform and language plug-in system

I am looking for a good, cross-platform and C ++ plugin system.

I am currently using Qt as a framework.

I need the plugins to be cross-platform and can be created in different scripting languages ​​(python, ruby, etc.) and Java.

Does anyone here know a good system for this?

thanks,

bl00dshooter.

+7
source share
2 answers

Here's a great article on how to write a portable plugin management system for C / C ++. This demonstrates that such a system is difficult to develop. It should have links ...

+1
source

You might want to keep an eye on pureImage , although Python and Ruby bindings are not yet implemented. We use it for image processing, but the kernel must be general enough to work for other domains.

(disclaimer: I am involved in the development of pureImage)

0
source

All Articles