mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-23 04:30:09 -05:00
Merge branch 'master' into feature/getting-started-tour
# Conflicts: # modules/skybrowser/skybrowsermodule.cpp
This commit is contained in:
@@ -34,7 +34,7 @@ class Connection;
|
||||
class BounceTopic : public Topic {
|
||||
public:
|
||||
BounceTopic() = default;
|
||||
virtual ~BounceTopic() = default;
|
||||
~BounceTopic() override = default;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace openspace {
|
||||
class DocumentationTopic : public Topic {
|
||||
public:
|
||||
DocumentationTopic() = default;
|
||||
virtual ~DocumentationTopic() = default;
|
||||
~DocumentationTopic() override = default;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace openspace {
|
||||
class EngineModeTopic : public Topic {
|
||||
public:
|
||||
EngineModeTopic();
|
||||
virtual ~EngineModeTopic();
|
||||
~EngineModeTopic() override;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -39,7 +39,7 @@ namespace openspace {
|
||||
class FlightControllerTopic : public Topic {
|
||||
public:
|
||||
FlightControllerTopic();
|
||||
~FlightControllerTopic();
|
||||
~FlightControllerTopic() override;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace openspace {
|
||||
class GetPropertyTopic : public Topic {
|
||||
public:
|
||||
GetPropertyTopic() = default;
|
||||
virtual ~GetPropertyTopic() = default;
|
||||
~GetPropertyTopic() override = default;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace openspace {
|
||||
class SessionRecordingTopic : public Topic {
|
||||
public:
|
||||
SessionRecordingTopic();
|
||||
virtual ~SessionRecordingTopic();
|
||||
~SessionRecordingTopic() override;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace openspace {
|
||||
class SetPropertyTopic : public Topic {
|
||||
public:
|
||||
SetPropertyTopic() = default;
|
||||
virtual ~SetPropertyTopic() = default;
|
||||
~SetPropertyTopic() override = default;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace openspace {
|
||||
|
||||
class ShortcutTopic : public Topic {
|
||||
public:
|
||||
virtual ~ShortcutTopic() = default;
|
||||
~ShortcutTopic() override = default;
|
||||
|
||||
void handleJson(const nlohmann::json& input) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace openspace {
|
||||
class SkyBrowserTopic : public Topic {
|
||||
public:
|
||||
SkyBrowserTopic();
|
||||
virtual ~SkyBrowserTopic();
|
||||
~SkyBrowserTopic() override;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace openspace {
|
||||
class SubscriptionTopic : public Topic {
|
||||
public:
|
||||
SubscriptionTopic() = default;
|
||||
~SubscriptionTopic();
|
||||
~SubscriptionTopic() override;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace openspace {
|
||||
class TimeTopic : public Topic {
|
||||
public:
|
||||
TimeTopic();
|
||||
virtual ~TimeTopic();
|
||||
~TimeTopic() override;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace openspace {
|
||||
class TriggerPropertyTopic : public Topic {
|
||||
public:
|
||||
TriggerPropertyTopic() = default;
|
||||
virtual ~TriggerPropertyTopic() = default;
|
||||
~TriggerPropertyTopic() override = default;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace openspace {
|
||||
|
||||
class VersionTopic : public Topic {
|
||||
public:
|
||||
virtual ~VersionTopic() = default;
|
||||
~VersionTopic() override = default;
|
||||
|
||||
void handleJson(const nlohmann::json& json) override;
|
||||
bool isDone() const override;
|
||||
|
||||
Reference in New Issue
Block a user