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