summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch2/FileServerI.h
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2005-01-11 03:59:42 +0000
committerMichi Henning <michi@zeroc.com>2005-01-11 03:59:42 +0000
commitbfdd46fc78552716f25900de5b75a6aff79c6d7c (patch)
treeb0078934828f0c08be6d5f2bf12757e1010f5ed1 /cpp/src/IcePatch2/FileServerI.h
parentCommented out the delete[] args calls again -- I couldn't reproduce a (diff)
downloadice-bfdd46fc78552716f25900de5b75a6aff79c6d7c.tar.bz2
ice-bfdd46fc78552716f25900de5b75a6aff79c6d7c.tar.xz
ice-bfdd46fc78552716f25900de5b75a6aff79c6d7c.zip
Minor refactoring of IcePatch2.
Diffstat (limited to 'cpp/src/IcePatch2/FileServerI.h')
-rw-r--r--cpp/src/IcePatch2/FileServerI.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/IcePatch2/FileServerI.h b/cpp/src/IcePatch2/FileServerI.h
index defdb0a282a..6a22bfcb674 100644
--- a/cpp/src/IcePatch2/FileServerI.h
+++ b/cpp/src/IcePatch2/FileServerI.h
@@ -22,9 +22,9 @@ public:
FileServerI(const std::string&, const FileInfoSeq&);
- FileInfoSeq getFileInfo1Seq(Ice::Int, const Ice::Current&) const;
+ FileInfoSeq getFileInfoSeq(Ice::Int, const Ice::Current&) const;
- ByteSeqSeq getChecksum0Seq(const Ice::Current&) const;
+ ByteSeqSeq getChecksumSeq(const Ice::Current&) const;
Ice::ByteSeq getChecksum(const Ice::Current&) const;
@@ -33,6 +33,7 @@ public:
private:
const std::string _dataDir;
+ const std::string _dataDirWithSlash;
const FileTree0 _tree0;
};