turn this into a namespace

svn path=/trunk/KDE/kdebase/workspace/lib/plasma/; revision=672686
This commit is contained in:
Aaron J. Seigo 2007-06-07 20:56:54 +00:00
parent ac270ef3e0
commit e90845573e

View File

@ -23,14 +23,15 @@
#include <QGraphicsScene>
#include <KUrl>
#include <plasma_export.h>
extern "C" {
typedef QGraphicsItemGroup* (*startKaramba)(const KUrl &theme, QGraphicsView *view);
}
class KarambaManager
namespace KarambaManager
{
public:
static QGraphicsItemGroup* loadKaramba(const KUrl &themePath, QGraphicsScene *scene);
PLASMA_EXPORT QGraphicsItemGroup* loadKaramba(const KUrl &themePath, QGraphicsScene *scene);
};
#endif