Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cross platform and language plugin system

I'm looking for a good, cross platform and cross language plugin system in C++.

I'm currently using Qt as a framework.

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

Anyone here knows a good system for that?

Thx,

bl00dshooter.

like image 788
bl00dshooter Avatar asked Feb 07 '11 11:02

bl00dshooter


1 Answers

Here a great article on how to write a portable plugin management system for C/C++. It demonstrates that such a system is hard to develop. It should have links in it ...

like image 115
neuro Avatar answered Sep 26 '22 10:09

neuro