Click here to Skip to main content
15,893,401 members
Articles / Programming Languages / C#

SOF - An OSGI-like modularization framework for C++

Rate me:
Please Sign up or sign in to vote.
4.75/5 (22 votes)
24 Sep 2008BSD8 min read 88K   653   39  
The article describes the usage of a modularization framework called SOF.
#include "BundleActivator1.h"

#include "sof/instantiation/ObjectCreator.h"
#include "sof/framework/Properties.h"

#include "IServiceA.h"
#include "IServiceAImpl.h"

using namespace sof::instantiation;
using namespace sof::framework;

BundleActivator1::~BundleActivator1() 
{
	// Deallocate memory
}

void BundleActivator1::start(IBundleContext::ConstPtr context) 
{
	Properties props;
	props.put( "instance", "1" );

	this->service = new IServiceAImpl();
	this->serviceReg = context->registerService( "IServiceA", this->service, props ); 
}

void BundleActivator1::stop(IBundleContext::ConstPtr context) 
{
	this->serviceReg->unregister();
	delete this->serviceReg;
	delete this->service;
}

REGISTER_BUNDLE_ACTIVATOR_CLASS( "BundleActivator1", BundleActivator1 )

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Software Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions