diff OrthancFramework/Sources/JobsEngine/SetOfCommandsJob.h @ 4303:44b53a2c0a13

improving detection of ABI compatibility
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 06 Nov 2020 15:37:30 +0100
parents b30a8de92ad9
children 50b0c69b653a
line wrap: on
line diff
--- a/OrthancFramework/Sources/JobsEngine/SetOfCommandsJob.h	Fri Nov 06 10:00:05 2020 +0100
+++ b/OrthancFramework/Sources/JobsEngine/SetOfCommandsJob.h	Fri Nov 06 15:37:30 2020 +0100
@@ -36,7 +36,9 @@
     class ICommand : public boost::noncopyable
     {
     public:
-      virtual ~ICommand();
+      virtual ~ICommand()
+      {
+      }
 
       virtual bool Execute(const std::string& jobId) = 0;
 
@@ -46,7 +48,9 @@
     class ICommandUnserializer : public boost::noncopyable
     {
     public:
-      virtual ~ICommandUnserializer();
+      virtual ~ICommandUnserializer()
+      {
+      }
       
       virtual ICommand* Unserialize(const Json::Value& source) const = 0;
     };