2022-06-08 11:30:04 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-12-09 14:27:12 +00:00
|
|
|
|
|
|
|
#include "device.h"
|
|
|
|
|
|
|
|
#include <QApplication>
|
2021-02-22 14:05:28 +00:00
|
|
|
#include <QtCore/QLoggingCategory>
|
2011-12-09 14:27:12 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2021-02-22 14:05:28 +00:00
|
|
|
// QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
|
2011-12-09 14:27:12 +00:00
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
DeviceDiscoveryDialog d;
|
2021-10-19 09:39:31 +00:00
|
|
|
d.exec();
|
2011-12-09 14:27:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|