mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:50:06 +00:00
Declaring destructors virtual
This commit is contained in:
parent
0069ed2f4d
commit
afb174a8fe
2 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ class GenericLayer : public QObject
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit GenericLayer();
|
explicit GenericLayer();
|
||||||
~GenericLayer();
|
virtual ~GenericLayer();
|
||||||
|
|
||||||
virtual void Initialize() = 0;
|
virtual void Initialize() = 0;
|
||||||
virtual void Render(const QMapbox::CustomLayerRenderParameters&) = 0;
|
virtual void Render(const QMapbox::CustomLayerRenderParameters&) = 0;
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ class RadarProductView : public QObject
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit RadarProductView();
|
explicit RadarProductView();
|
||||||
~RadarProductView();
|
virtual ~RadarProductView();
|
||||||
|
|
||||||
virtual const std::vector<boost::gil::rgba8_pixel_t>& color_table() const;
|
virtual const std::vector<boost::gil::rgba8_pixel_t>& color_table() const;
|
||||||
virtual uint16_t color_table_min() const;
|
virtual uint16_t color_table_min() const;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue