mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 15:45:46 +08:00
Ref T545 Removed redundant constructors that are now inherited.
This commit is contained in:
@@ -40,9 +40,6 @@ namespace BlackMisc
|
||||
//! Default constructor.
|
||||
CCloudLayerList() = default;
|
||||
|
||||
//! Initializer list constructor.
|
||||
CCloudLayerList(std::initializer_list<CCloudLayer> il) : CSequence<CCloudLayer>(il) {}
|
||||
|
||||
//! Construct from a base class object.
|
||||
CCloudLayerList(const CSequence<CCloudLayer> &other);
|
||||
|
||||
|
||||
@@ -41,9 +41,6 @@ namespace BlackMisc
|
||||
//! Default constructor.
|
||||
CTemperatureLayerList() = default;
|
||||
|
||||
//! Initializer list constructor.
|
||||
CTemperatureLayerList(std::initializer_list<CTemperatureLayer> il) : CSequence<CTemperatureLayer>(il) {}
|
||||
|
||||
//! Construct from a base class object.
|
||||
CTemperatureLayerList(const CSequence<CTemperatureLayer> &other);
|
||||
|
||||
|
||||
@@ -40,9 +40,6 @@ namespace BlackMisc
|
||||
//! Default constructor.
|
||||
CVisibilityLayerList() = default;
|
||||
|
||||
//! Initializer list constructor.
|
||||
CVisibilityLayerList(std::initializer_list<CVisibilityLayer> il) : CSequence<CVisibilityLayer>(il) {}
|
||||
|
||||
//! Construct from a base class object.
|
||||
CVisibilityLayerList(const CSequence<CVisibilityLayer> &other);
|
||||
|
||||
|
||||
@@ -41,9 +41,6 @@ namespace BlackMisc
|
||||
//! Default constructor.
|
||||
CWeatherGrid() = default;
|
||||
|
||||
//! Initializer list constructor.
|
||||
CWeatherGrid(std::initializer_list<CGridPoint> il) : CSequence<CGridPoint>(il) {}
|
||||
|
||||
//! Construct from a base class object.
|
||||
CWeatherGrid(const CSequence<CGridPoint> &other);
|
||||
|
||||
|
||||
@@ -40,9 +40,6 @@ namespace BlackMisc
|
||||
//! Default constructor.
|
||||
CWindLayerList() = default;
|
||||
|
||||
//! Initializer list constructor.
|
||||
CWindLayerList(std::initializer_list<CWindLayer> il) : CSequence<CWindLayer>(il) {}
|
||||
|
||||
//! Construct from a base class object.
|
||||
CWindLayerList(const CSequence<CWindLayer> &other);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user