raDIYo 0.4
swbluetoothcontrol.h
1/***************************************************************************
2
3 source::worx raDIYo
4 Copyright © 2020-2022 c.holzheuer
5 c.holzheuer@sourceworx.org
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12***************************************************************************/
13
14
15#ifndef SWBLUETOOTHCONTROL_H
16#define SWBLUETOOTHCONTROL_H
17
18#include <swabstractcontrol.h>
19#include <ui_swbluetoothcontrol.h>
20
21QT_BEGIN_NAMESPACE
22namespace Ui { class SWBlueToothControl; }
23QT_END_NAMESPACE
24
25
26class SWBlueToothControl : public SWAbstractControl, private Ui_SWBlueToothControl
27{
28
29 Q_OBJECT
30
31public:
32
33 explicit SWBlueToothControl( SWRaDIYoMainWidget* parent );
34 virtual ~SWBlueToothControl();
35
36public slots:
37
38 //void onDialClicked() override;
39 //void onDialValueChanged( int value ) override;
40
41};
42
43#endif // SWBLUETOOTHCONTROL_H