diff OrthancFramework/Sources/DicomFormat/DicomValue.h @ 4296:3b70a2e6a06c

moving inline methods to source files for ABI compatibility
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 05 Nov 2020 15:52:28 +0100
parents bf7b9edf6b81
children 50b0c69b653a
line wrap: on
line diff
--- a/OrthancFramework/Sources/DicomFormat/DicomValue.h	Thu Nov 05 12:01:11 2020 +0100
+++ b/OrthancFramework/Sources/DicomFormat/DicomValue.h	Thu Nov 05 15:52:28 2020 +0100
@@ -51,9 +51,7 @@
     DicomValue(const DicomValue& other);
 
   public:
-    DicomValue() : type_(Type_Null)
-    {
-    }
+    DicomValue();
     
     DicomValue(const std::string& content,
                bool isBinary);
@@ -64,15 +62,9 @@
     
     const std::string& GetContent() const;
 
-    bool IsNull() const
-    {
-      return type_ == Type_Null;
-    }
+    bool IsNull() const;
 
-    bool IsBinary() const
-    {
-      return type_ == Type_Binary;
-    }
+    bool IsBinary() const;
     
     DicomValue* Clone() const;