15 lines
406 B
C
15 lines
406 B
C
|
/******************************************************************************
|
||
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QskLinearBox.h>
|
||
|
|
||
|
class SwipeViewPage : public QskLinearBox
|
||
|
{
|
||
|
public:
|
||
|
SwipeViewPage( QQuickItem* parent = nullptr );
|
||
|
};
|