123456789101112131415161718192021222324252627282930313233343536 |
- /*
- * Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
- * All rights reserved.
- * This component and the accompanying materials are made available
- * under the terms of "Eclipse Public License v1.0"
- * which accompanies this distribution, and is available
- * at the URL "http://www.eclipse.org/legal/epl-v10.html".
- *
- * Initial Contributors:
- * Nokia Corporation - initial contribution.
- *
- * Contributors:
- *
- * Description: NfcNppExample.
- */
- #include <QtGui/QApplication>
- #include <QtDeclarative>
- #include "qmlapplicationviewer.h"
- #include "nfcnppexample.h"
- #include "main.h"
- int main(int argc, char *argv[])
- {
- QApplication app(argc, argv);
- qmlRegisterType<NfcNppExample>("NfcNppExample", 1, 0, "NfcNppExample");
- QmlApplicationViewer viewer;
- viewer.setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
- viewer.setMainQmlFile(QLatin1String("qml/nfcnppexample/main.qml"));
- viewer.showExpanded();
- return app.exec();
- }
|