mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
21 lines
306 B
C
21 lines
306 B
C
![]() |
#ifndef MAINWINDOW_H
|
||
|
#define MAINWINDOW_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
#include "DockManager.h"
|
||
|
|
||
|
class MainWindow : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MainWindow(QWidget* parent = 0);
|
||
|
~MainWindow() = default;
|
||
|
|
||
|
private:
|
||
|
ads::CDockManager* m_DockManager;
|
||
|
};
|
||
|
|
||
|
#endif // MAINWINDOW_H
|