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