18 lines
414 B
C++
18 lines
414 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "Page.h"
|
|
|
|
class SelectorPage : public Page
|
|
{
|
|
public:
|
|
SelectorPage( QQuickItem* = nullptr );
|
|
|
|
private:
|
|
void populate();
|
|
};
|