mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
32 lines
900 B
C++
32 lines
900 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2016 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
//! \file
|
|
|
|
#ifndef SWIFT_GUI_MODELS_CLOUDLAYERLISTMODEL_H
|
|
#define SWIFT_GUI_MODELS_CLOUDLAYERLISTMODEL_H
|
|
|
|
#include "gui/models/listmodelbase.h"
|
|
#include "gui/swiftguiexport.h"
|
|
#include "misc/weather/cloudlayer.h"
|
|
#include "misc/weather/cloudlayerlist.h"
|
|
|
|
class QObject;
|
|
|
|
namespace swift::gui::models
|
|
{
|
|
//! Cloud layer list model
|
|
class SWIFT_GUI_EXPORT CCloudLayerListModel : public CListModelBase<swift::misc::weather::CCloudLayerList, false>
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CCloudLayerListModel(QObject *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CCloudLayerListModel() {}
|
|
};
|
|
} // namespace swift::gui::models
|
|
#endif // SWIFT_GUI_MODELS_CLOUDLAYERLISTMODEL_H
|