summaryrefslogtreecommitdiffstats
path: root/src/qmlandroid/graphics/qtqmlandroidgraphicsmodule.cpp
blob: f3dde34dcd4a52035b44eb2fd6ec621ad3dc43a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "qtqmlandroidgraphicsmodule_p.h"

#include "qqmlandroidcolor_p.h"

#include <QtQml/qqml.h>

QT_BEGIN_NAMESPACE

namespace QtQmlAndroid {

void registerGraphicsModule(const char *uri)
{
    qmlRegisterSingletonType<QQmlAndroidColor>(uri, 0, 21, "Color", QQmlAndroidColor::provider);
}

}

QT_END_NAMESPACE