summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/pingpong/main.cpp
blob: 8df300ec6391300e104959eb3b0aa5a11cbb61ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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();
}