diff Core/FileStorage/IStorageArea.h @ 1135:67c3c1e4a6e0

index-only mode, and custom storage area with plugins
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Sep 2014 15:55:43 +0200
parents bf67431a7383
children 2ffe07abd9d8
line wrap: on
line diff
--- a/Core/FileStorage/IStorageArea.h	Tue Sep 09 12:53:49 2014 +0200
+++ b/Core/FileStorage/IStorageArea.h	Tue Sep 09 15:55:43 2014 +0200
@@ -45,9 +45,10 @@
     {
     }
 
-    virtual std::string Create(const void* content, 
-                               size_t size,
-                               FileContentType type) = 0;
+    virtual void Create(const std::string& uuid,
+                        const void* content,
+                        size_t size,
+                        FileContentType type) = 0;
 
     virtual void Read(std::string& content,
                       const std::string& uuid,