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 <QGraphicsScene>
#include <KUrl> #include <KUrl>
#include <plasma_export.h>
extern "C" { extern "C" {
typedef QGraphicsItemGroup* (*startKaramba)(const KUrl &theme, QGraphicsView *view); typedef QGraphicsItemGroup* (*startKaramba)(const KUrl &theme, QGraphicsView *view);
} }
class KarambaManager namespace KarambaManager
{ {
public: PLASMA_EXPORT QGraphicsItemGroup* loadKaramba(const KUrl &themePath, QGraphicsScene *scene);
static QGraphicsItemGroup* loadKaramba(const KUrl &themePath, QGraphicsScene *scene);
}; };
#endif #endif