diff options
author | Marvin Borner | 2019-01-06 16:05:55 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-06 16:05:55 +0100 |
commit | bceb42b605696d408d86fad50ddd8d24c1c3499e (patch) | |
tree | 9e54cfb786809addaa91bba207fd03a1d532b93f /src |
Initial layout
Diffstat (limited to 'src')
-rw-r--r-- | src/BinaryFun.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/BinaryFun.cpp b/src/BinaryFun.cpp new file mode 100644 index 0000000..fbcbfd0 --- /dev/null +++ b/src/BinaryFun.cpp @@ -0,0 +1,22 @@ +#ifdef QT_QML_DEBUG +#include <QtQuick> +#endif + +using std::string; + +#include <sailfishapp.h> + +int main(int argc, char *argv[]) +{ + // SailfishApp::main() will display "qml/BinaryFun.qml", if you need more + // control over initialization, you can use: + // + // - SailfishApp::application(int, char *[]) to get the QGuiApplication * + // - SailfishApp::createView() to get a new QQuickView * instance + // - SailfishApp::pathTo(QString) to get a QUrl to a resource file + // - SailfishApp::pathToMainQml() to get a QUrl to the main QML file + // + // To display the view, call "show()" (will show fullscreen on device). + + return SailfishApp::main(argc, argv); +} |