raDIYo 0.4
swusbcontrol.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 SWUSBCONTROL_H
16#define SWUSBCONTROL_H
17
18#include <swabstractcontrol.h>
19#include <ui_swusbcontrol.h>
20#include <QWidget>
21
22QT_BEGIN_NAMESPACE
23namespace Ui { class SWUSBControl; }
24QT_END_NAMESPACE
25
26
27class SWUSBControl : public SWAbstractControl, private Ui_SWUSBControl
28{
29
30 Q_OBJECT
31
32public:
33
34 explicit SWUSBControl( SWRaDIYoMainWidget* parent );
35 virtual ~SWUSBControl();
36
37public slots:
38
39 //void onDialClicked() override;
40 //void onDialValueChanged( int value ) override;
41
42};
43
44
45#endif // SWUSBCONTROL_H