15 lines
350 B
C
15 lines
350 B
C
|
/******************************************************************************
|
||
|
* QSkinny - Copyright (C) The authors
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QskWindow.h>
|
||
|
|
||
|
class Window : public QskWindow
|
||
|
{
|
||
|
public:
|
||
|
Window();
|
||
|
};
|