diff Framework/Common/FileValue.h @ 244:02cd7254c949

separating class InputFileValue from FileValue
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Apr 2021 18:43:21 +0200
parents f5dc59c56e65
children
line wrap: on
line diff
--- a/Framework/Common/FileValue.h	Tue Apr 13 17:53:53 2021 +0200
+++ b/Framework/Common/FileValue.h	Tue Apr 13 18:43:21 2021 +0200
@@ -37,17 +37,6 @@
     {
     }
 
-    explicit FileValue(const std::string& content) :
-      content_(content)
-    {
-    }
-
-    FileValue(const void* buffer,
-              size_t size)
-    {
-      content_.assign(reinterpret_cast<const char*>(buffer), size);
-    }
-    
     std::string& GetContent()
     {
       return content_;