refactor: Rename blackgui to swift::gui

This commit is contained in:
Lars Toenning
2024-11-10 20:59:19 +01:00
parent 3a2447770f
commit 6d1812b164
979 changed files with 5394 additions and 5394 deletions

View File

@@ -0,0 +1,32 @@
// 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/swiftguiexport.h"
#include "gui/models/listmodelbase.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() {}
};
}
#endif // guard