blob: 4cb63c889875bab1ae036a357a31f0440179c438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <QMainWindow>
#include "mainwindow.h"
class CDAutomationsTabWidget : public QWidget {
Q_OBJECT
public:
CDMainWindow *mainwindow = nullptr;
CDAutomationsTabWidget(CDMainWindow *main_window = nullptr);
virtual ~CDAutomationsTabWidget();
};
|