Click here to Skip to main content
15,881,898 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 87.7K   653   39  
The article describes the usage of a modularization framework called SOF.
#ifndef ISERVICE_B_IMPL_H
#define ISERVICE_B_IMPL_H

#include "IServiceB.h"

using namespace sof::framework;

class IServiceBImpl : public IServiceB
{

	public:
		int getValue();
};
#endif

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