qskinny/examples/gallery/Page.h

16 lines
447 B
C
Raw Normal View History

2020-08-11 15:56:53 +00:00
/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
2023-04-06 07:23:37 +00:00
* SPDX-License-Identifier: BSD-3-Clause
2020-08-11 15:56:53 +00:00
*****************************************************************************/
2021-08-04 08:11:12 +00:00
#pragma once
2020-08-11 15:56:53 +00:00
#include <QskLinearBox.h>
class Page : public QskLinearBox
{
public:
2022-04-19 06:42:53 +00:00
Page( QQuickItem* parent = nullptr );
2020-08-11 15:56:53 +00:00
Page( Qt::Orientation, QQuickItem* parent = nullptr );
};