qskinny/examples/automotive/MainWindow.h
2019-06-20 12:02:28 +02:00

25 lines
557 B
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the 3-clause BSD License
*****************************************************************************/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QskWindow.h>
class QQuickItem;
class MainWindow : public QskWindow
{
public:
MainWindow();
private:
QQuickItem* headerBar() const;
QQuickItem* mainContent() const;
QQuickItem* footerBar() const;
};
#endif