diff Framework/Common/BinaryStringValue.h @ 186:6fe74f9a516e

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Dec 2020 15:05:19 +0100
parents 4cd7e45b671e
children 3236894320d6
line wrap: on
line diff
--- a/Framework/Common/BinaryStringValue.h	Wed Dec 16 13:59:17 2020 +0100
+++ b/Framework/Common/BinaryStringValue.h	Wed Dec 16 15:05:19 2020 +0100
@@ -23,6 +23,8 @@
 
 #include "IValue.h"
 
+#include <Compatibility.h>
+
 namespace OrthancDatabases
 {
   class BinaryStringValue : public IValue
@@ -66,13 +68,13 @@
       return content_.size();
     }
 
-    virtual ValueType GetType() const
+    virtual ValueType GetType() const ORTHANC_OVERRIDE
     {
       return ValueType_BinaryString;
     }
     
-    virtual IValue* Convert(ValueType target) const;
+    virtual IValue* Convert(ValueType target) const ORTHANC_OVERRIDE;
 
-    virtual std::string Format() const;
+    virtual std::string Format() const ORTHANC_OVERRIDE;
   };
 }