Commit d59536db authored by Gus Grubba's avatar Gus Grubba

Fix warning from error within the Airmap SDK.

This is at best temporary until we get a properly functional SDK from Airmap.
parent 501a4992
...@@ -60,6 +60,7 @@ class Traffic : DoNotCopyOrMove { ...@@ -60,6 +60,7 @@ class Traffic : DoNotCopyOrMove {
/// Subscriber abstracts handling of batches of Update instances. /// Subscriber abstracts handling of batches of Update instances.
class Subscriber { class Subscriber {
public: public:
virtual ~Subscriber() = default;
/// handle_update is invoked when a new batch of Update instances /// handle_update is invoked when a new batch of Update instances
/// is available. /// is available.
virtual void handle_update(Update::Type type, const std::vector<Update>& update) = 0; virtual void handle_update(Update::Type type, const std::vector<Update>& update) = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment