Skip to content
Snippets Groups Projects
Commit e83a6bb7 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Add missing virtual destructors

parent 694c9893
No related branches found
Tags v0.8.3
No related merge requests found
...@@ -47,6 +47,7 @@ namespace armarx::aron::cppserializer ...@@ -47,6 +47,7 @@ namespace armarx::aron::cppserializer
public: public:
AronCppClass() = default; AronCppClass() = default;
virtual ~AronCppClass() = default;
/// Reset all member values of this class to default (as stated in the XML). This may mean that maybe types are null or false and images may be created as headers_only /// Reset all member values of this class to default (as stated in the XML). This may mean that maybe types are null or false and images may be created as headers_only
virtual void resetHard() = 0; virtual void resetHard() = 0;
......
...@@ -47,6 +47,7 @@ namespace armarx::aron ...@@ -47,6 +47,7 @@ namespace armarx::aron
class Navigator class Navigator
{ {
public: public:
// constructors // constructors
Navigator() = default; Navigator() = default;
Navigator(const Descriptor& descriptor, const Path& path) : Navigator(const Descriptor& descriptor, const Path& path) :
...@@ -54,6 +55,7 @@ namespace armarx::aron ...@@ -54,6 +55,7 @@ namespace armarx::aron
path(path) path(path)
{ {
} }
virtual ~Navigator() = default;
// public member functions // public member functions
Descriptor getDescriptor() const Descriptor getDescriptor() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment