mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-27 11:05:44 +08:00
refactor: Rename blackgui to swift::gui
This commit is contained in:
31
src/gui/models/aircrafticaolistmodel.h
Normal file
31
src/gui/models/aircrafticaolistmodel.h
Normal file
@@ -0,0 +1,31 @@
|
||||
// SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
||||
|
||||
//! \file
|
||||
|
||||
#ifndef SWIFT_GUI_MODELS_AIRCRAFTICAOLISTMODEL_H
|
||||
#define SWIFT_GUI_MODELS_AIRCRAFTICAOLISTMODEL_H
|
||||
|
||||
#include "misc/aviation/aircrafticaocodelist.h"
|
||||
#include "misc/aviation/aircrafticaocode.h"
|
||||
#include "gui/models/listmodeldbobjects.h"
|
||||
#include "gui/swiftguiexport.h"
|
||||
|
||||
namespace swift::gui::models
|
||||
{
|
||||
//! Airport list model
|
||||
class SWIFT_GUI_EXPORT CAircraftIcaoCodeListModel :
|
||||
public CListModelDbObjects<swift::misc::aviation::CAircraftIcaoCodeList, int, true>
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Constructor
|
||||
explicit CAircraftIcaoCodeListModel(QObject *parent = nullptr);
|
||||
|
||||
//! Destructor
|
||||
virtual ~CAircraftIcaoCodeListModel() {}
|
||||
};
|
||||
} // ns
|
||||
|
||||
#endif // guard
|
||||
Reference in New Issue
Block a user