qskinny/examples/iot-dashboard/MainWindow.h

24 lines
353 B
C
Raw Normal View History

2020-05-22 07:47:09 +00:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QskWindow.h>
2020-05-22 09:48:05 +00:00
class MainContent;
class MenuBar;
2020-05-22 07:47:09 +00:00
class QskLinearBox;
class MainWindow : public QskWindow
{
2021-03-26 08:45:33 +00:00
Q_OBJECT
2020-05-22 07:47:09 +00:00
2021-03-26 08:45:33 +00:00
public:
MainWindow();
2020-05-22 07:47:09 +00:00
2021-03-26 08:45:33 +00:00
private:
QskLinearBox* m_mainLayout;
MenuBar* m_menuBar;
MainContent* m_mainContent;
2020-05-22 07:47:09 +00:00
};
#endif // MAINWINDOW_H