Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ modularization framework (like OSGi) ?

I found one SOF http://www.codeproject.com/KB/library/SOF_.aspx , Are there anyother stable frameworks for modularization in C++ ?

like image 611
Ashika Umanga Umagiliya Avatar asked Apr 13 '10 05:04

Ashika Umanga Umagiliya


4 Answers

The authors of the open source Portable Components library (POCO) have also developed a modular framework based on OSGI called OSP or Open Service Platform. http://www.appinf.com/en/products/osp.html. It's not open source however.

like image 166
JoshL Avatar answered Nov 10 '22 08:11

JoshL


I found this write-up which gives a status as of April 2012. Definitely worth reviewing OSGi and C++ frameworks overview.

like image 35
Langley Avatar answered Nov 10 '22 09:11

Langley


There is also BlueBerry http://www.blueberry-project.org which implements a component based framework inspired by OSGi. It also comes with an application framework similar to the Eclipse RCP.

A rewrite of the BlueBerry core can be found in the CTK PluginFramework library (based on Qt Core): Introduction, GitHub Code .

like image 4
Sascha Avatar answered Nov 10 '22 09:11

Sascha


The OSGi4Cpp tries to implement the OSGi specification in C++.

like image 2
Tim Avatar answered Nov 10 '22 07:11

Tim