26 lines
553 B
C++
26 lines
553 B
C++
/******************************************************************************
|
|
* Copyright (C) 2021 Edelhirsch Software GmbH
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <QskWindow.h>
|
|
|
|
class MainContent;
|
|
class MenuBar;
|
|
class QskLinearBox;
|
|
|
|
class MainWindow : public QskWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow();
|
|
|
|
private:
|
|
QskLinearBox* m_mainLayout;
|
|
MenuBar* m_menuBar;
|
|
MainContent* m_mainContent;
|
|
};
|