summaryrefslogtreecommitdiffstats
path: root/src/qmlandroid/graphics/drawable/qtqmlandroiddrawablemodule.cpp
blob: 48860f10b7c5a6452427c40580c1e25474c5f6b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "qtqmlandroiddrawablemodule_p.h"

#include "qqmlandroidcolordrawable_p.h"
#include "qqmlandroiddrawable_p.h"

#include <QtQml/qqml.h>

QT_BEGIN_NAMESPACE

namespace QtQmlAndroid {

void registerDrawableModule(const char *uri)
{
    qmlRegisterType<QQmlAndroidColorDrawable>(uri, 0, 21, "ColorDrawable");
    qmlRegisterType<QQmlAndroidDrawable>(uri, 0, 21, "Drawable");
}

}

QT_END_NAMESPACE