blob: 47046a3938fa215eeeb2fb0c08bbdbd645fd1a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "qtqmlandroidcontentmodule_p.h"
#include "qqmlandroidcontext_p.h"
#include <QtQml/qqml.h>
QT_BEGIN_NAMESPACE
namespace QtQmlAndroid {
void registerContentModule(const char *uri)
{
qmlRegisterUncreatableType<QQmlAndroidContext>(uri, 0, 21, "Context", QStringLiteral("Cannot create Context"));
}
}
QT_END_NAMESPACE
|