mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-17 10:55:32 +08:00
refs #800 Fixed warning: deprecated implicit copy ctor/assign with user-declared dtor (rule of zero).
This commit is contained in:
committed by
Klaus Basan
parent
a44ffcbe79
commit
3351b1f8e1
@@ -296,6 +296,9 @@ namespace BlackMisc
|
||||
class PimplBase
|
||||
{
|
||||
public:
|
||||
PimplBase() {}
|
||||
PimplBase(const PimplBase &) = default;
|
||||
PimplBase &operator =(const PimplBase &) = delete;
|
||||
virtual ~PimplBase() {}
|
||||
virtual PimplBase *clone() const = 0;
|
||||
virtual PimplBase *cloneEmpty() const = 0;
|
||||
|
||||
@@ -440,6 +440,9 @@ namespace BlackMisc
|
||||
class PimplBase
|
||||
{
|
||||
public:
|
||||
PimplBase() {}
|
||||
PimplBase(const PimplBase &) = default;
|
||||
PimplBase &operator =(const PimplBase &) = delete;
|
||||
virtual ~PimplBase() {}
|
||||
virtual PimplBase *clone() const = 0;
|
||||
virtual const_reference operator *() const = 0;
|
||||
@@ -601,6 +604,9 @@ namespace BlackMisc
|
||||
class PimplBase
|
||||
{
|
||||
public:
|
||||
PimplBase() {}
|
||||
PimplBase(const PimplBase &) = default;
|
||||
PimplBase &operator =(const PimplBase &) = delete;
|
||||
virtual ~PimplBase() {}
|
||||
virtual PimplBase *clone() const = 0;
|
||||
virtual const_reference operator *() const = 0;
|
||||
@@ -786,6 +792,9 @@ namespace BlackMisc
|
||||
class PimplBase
|
||||
{
|
||||
public:
|
||||
PimplBase() {}
|
||||
PimplBase(const PimplBase &) = default;
|
||||
PimplBase &operator =(const PimplBase &) = delete;
|
||||
virtual ~PimplBase() {}
|
||||
virtual PimplBase *clone() const = 0;
|
||||
virtual const_reference operator *() const = 0;
|
||||
|
||||
@@ -538,6 +538,9 @@ namespace BlackMisc
|
||||
class PimplBase
|
||||
{
|
||||
public:
|
||||
PimplBase() {}
|
||||
PimplBase(const PimplBase &) = default;
|
||||
PimplBase &operator =(const PimplBase &) = delete;
|
||||
virtual ~PimplBase() {}
|
||||
virtual PimplBase *clone() const = 0;
|
||||
virtual PimplBase *cloneEmpty() const = 0;
|
||||
|
||||
@@ -45,9 +45,6 @@ namespace BlackMisc
|
||||
//! Default constructor
|
||||
CSettings();
|
||||
|
||||
//! Destructor.
|
||||
~CSettings() {}
|
||||
|
||||
//! Set simulator directory
|
||||
void setSimulatorDirectory(const QString &simulatorDirectory);
|
||||
|
||||
@@ -207,9 +204,6 @@ namespace BlackMisc
|
||||
//! Default constructor
|
||||
CSettingsSimulatorMessages();
|
||||
|
||||
//! Destructor.
|
||||
~CSettingsSimulatorMessages() {}
|
||||
|
||||
//! Log severity
|
||||
void setTechnicalLogSeverity(BlackMisc::CStatusMessage::StatusSeverity severity);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user