19 lines
404 B
C++
19 lines
404 B
C++
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include "device.h"
|
|
|
|
#include <QApplication>
|
|
#include <QtCore/QLoggingCategory>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
|
|
QApplication app(argc, argv);
|
|
|
|
DeviceDiscoveryDialog d;
|
|
d.exec();
|
|
return 0;
|
|
}
|
|
|