mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
Declare destructor virtual for IMetarDecoderPart
This commit is contained in:
committed by
Klaus Basan
parent
a36023f6d8
commit
6a8658f04c
@@ -48,6 +48,8 @@ namespace BlackMisc
|
||||
|
||||
class IMetarDecoderPart
|
||||
{
|
||||
public:
|
||||
virtual ~IMetarDecoderPart();
|
||||
protected:
|
||||
virtual bool isRepeatable() const { return false; }
|
||||
virtual const QRegularExpression &getRegExp() const = 0;
|
||||
@@ -92,6 +94,9 @@ namespace BlackMisc
|
||||
}
|
||||
};
|
||||
|
||||
IMetarDecoderPart::~IMetarDecoderPart()
|
||||
{ }
|
||||
|
||||
class CMetarDecoderReportType : public IMetarDecoderPart
|
||||
{
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user