LCGDM-902: VFS adapted to new API
authorAlejandro Álvarez Ayllón <alejandro.alvarez.ayllon@cern.ch>
Tue, 18 Dec 2012 10:07:57 +0000 (10:07 +0000)
committerAlejandro Álvarez Ayllón <alejandro.alvarez.ayllon@cern.ch>
Tue, 18 Dec 2012 10:07:57 +0000 (10:07 +0000)
git-svn-id: https://svn.cern.ch/reps/lcgdm/dmlite-plugins-vfs/trunk@8050 4525493e-7705-40b1-a816-d608a930855b

src/VfsDriver.cpp
src/VfsDriver.h

index e756901..8cae412 100644 (file)
@@ -198,8 +198,7 @@ Location VfsPoolHandler::whereToWrite(const std::string& sfn) throw (DmException
 
 
 
-void VfsPoolHandler::doneWriting(const Replica& replica,
-                                        const Extensible& extras) throw (DmException)
+void VfsPoolHandler::doneWriting(const Location& loc) throw (DmException)
 {
   throw DmException(EACCES, "Write mode not supported");
 }
index e243cd9..d521d0c 100644 (file)
@@ -56,8 +56,7 @@ namespace dmlite {
     void removeReplica(const Replica&) throw (DmException);
 
     Location whereToWrite(const std::string&) throw (DmException);
-    void     doneWriting (const Replica&,
-                          const Extensible&) throw (DmException);
+    void     doneWriting (const Location&) throw (DmException);
 
   private:
     VfsPoolDriver* driver_;