Fix version number
[harbour-pedalo.git] / src / harbour-pedalo.cpp
1 #ifdef QT_QML_DEBUG
2 #include <QtQuick>
3 #endif
4
5 #include <sailfishapp.h>
6
7 int main(int argc, char *argv[])
8 {
9 // SailfishApp::main() will display "qml/harbour-pedalo.qml", if you need more
10 // control over initialization, you can use:
11 //
12 // - SailfishApp::application(int, char *[]) to get the QGuiApplication *
13 // - SailfishApp::createView() to get a new QQuickView * instance
14 // - SailfishApp::pathTo(QString) to get a QUrl to a resource file
15 // - SailfishApp::pathToMainQml() to get a QUrl to the main QML file
16 //
17 // To display the view, call "show()" (will show fullscreen on device).
18
19 return SailfishApp::main(argc, argv);
20 }