2023-01-02 09:42:41 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (C) 2021 Edelhirsch Software GmbH
|
2023-04-06 10:15:03 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2023-01-02 09:42:41 +01:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QskGridBox.h>
|
|
|
|
#include <QskLinearBox.h>
|
|
|
|
|
|
|
|
class DevicesPage : public QskLinearBox
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QSK_SUBCONTROLS( Panel )
|
|
|
|
|
|
|
|
DevicesPage( QQuickItem* parent );
|
|
|
|
};
|