17 lines
383 B
C++
17 lines
383 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <QskWindow.h>
|
|
|
|
class QQuickItem;
|
|
|
|
class MainWindow : public QskWindow
|
|
{
|
|
public:
|
|
MainWindow();
|
|
};
|