mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 07:35:48 +08:00
Ref T545 Using constructor inheritance in derived container classes.
This commit is contained in:
@@ -61,6 +61,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CAircraftModelList)
|
||||
using CSequence::CSequence;
|
||||
|
||||
//! Empty constructor.
|
||||
CAircraftModelList();
|
||||
|
||||
@@ -38,6 +38,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CDistributorList)
|
||||
using CSequence::CSequence;
|
||||
|
||||
//! Default constructor.
|
||||
CDistributorList();
|
||||
|
||||
@@ -39,9 +39,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CAircraftCfgEntriesList)
|
||||
|
||||
//! Constructor
|
||||
CAircraftCfgEntriesList() {}
|
||||
using CSequence::CSequence;
|
||||
|
||||
//! Contains model with title?
|
||||
bool containsModelWithTitle(const QString &title, Qt::CaseSensitivity caseSensitivity = Qt::CaseInsensitive);
|
||||
|
||||
@@ -37,6 +37,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CVPilotModelRuleSet)
|
||||
using CCollection::CCollection;
|
||||
|
||||
//! Default constructor.
|
||||
CVPilotModelRuleSet() = default;
|
||||
|
||||
@@ -30,6 +30,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CInterpolationSetupList)
|
||||
using CSequence::CSequence;
|
||||
|
||||
//! Default constructor.
|
||||
CInterpolationSetupList();
|
||||
|
||||
@@ -28,6 +28,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CMatchingStatistics)
|
||||
using CSequence::CSequence;
|
||||
|
||||
//! Default constructor.
|
||||
CMatchingStatistics();
|
||||
|
||||
@@ -45,6 +45,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CSimulatedAircraftList)
|
||||
using CSequence::CSequence;
|
||||
|
||||
//! Default constructor.
|
||||
CSimulatedAircraftList();
|
||||
|
||||
@@ -30,6 +30,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CSimulatorInfoList)
|
||||
using CSequence::CSequence;
|
||||
|
||||
//! Default constructor.
|
||||
CSimulatorInfoList();
|
||||
|
||||
@@ -35,6 +35,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CSimulatorPluginInfoList)
|
||||
using CSequence::CSequence;
|
||||
|
||||
//! Default constructor
|
||||
CSimulatorPluginInfoList();
|
||||
|
||||
@@ -90,6 +90,7 @@ namespace BlackMisc
|
||||
{
|
||||
public:
|
||||
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CNavDataReferenceList)
|
||||
using CSequence::CSequence;
|
||||
|
||||
//! Default constructor.
|
||||
CNavDataReferenceList();
|
||||
|
||||
Reference in New Issue
Block a user