diff options
Diffstat (limited to 'examples/bluetooth/pingpong/main.cpp')
-rw-r--r-- | examples/bluetooth/pingpong/main.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/bluetooth/pingpong/main.cpp b/examples/bluetooth/pingpong/main.cpp deleted file mode 100644 index 8df300ec..00000000 --- a/examples/bluetooth/pingpong/main.cpp +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (C) 2014 BlackBerry Limited. All rights reserved. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause - -#include <QQmlContext> -#include <QGuiApplication> -#include <QQmlApplicationEngine> -#include <QLoggingCategory> -#include "pingpong.h" - - -int main(int argc, char *argv[]) -{ - // QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true")); - QGuiApplication app(argc, argv); - PingPong pingPong; - QQmlApplicationEngine engine; - engine.rootContext()->setContextProperty("pingPong", &pingPong); - engine.load(QUrl("qrc:/assets/main.qml")); - return app.exec(); -} |