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