diff options
author | Marc Laukien <marc@zeroc.com> | 2004-11-29 21:21:18 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-11-29 21:21:18 +0000 |
commit | 69b84c80da5a4f8bc48777459b4c46741dc80544 (patch) | |
tree | 21860af8f56b9a054646c470a4aea0b0debbffb8 /cpp/src/IcePatch2/FileServerI.h | |
parent | fixes (diff) | |
download | ice-69b84c80da5a4f8bc48777459b4c46741dc80544.tar.bz2 ice-69b84c80da5a4f8bc48777459b4c46741dc80544.tar.xz ice-69b84c80da5a4f8bc48777459b4c46741dc80544.zip |
fixes
Diffstat (limited to 'cpp/src/IcePatch2/FileServerI.h')
-rw-r--r-- | cpp/src/IcePatch2/FileServerI.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2/FileServerI.h b/cpp/src/IcePatch2/FileServerI.h index f5f20dcbfcd..defdb0a282a 100644 --- a/cpp/src/IcePatch2/FileServerI.h +++ b/cpp/src/IcePatch2/FileServerI.h @@ -20,7 +20,7 @@ class FileServerI : public FileServer { public: - FileServerI(const FileInfoSeq&); + FileServerI(const std::string&, const FileInfoSeq&); FileInfoSeq getFileInfo1Seq(Ice::Int, const Ice::Current&) const; @@ -32,6 +32,7 @@ public: private: + const std::string _dataDir; const FileTree0 _tree0; }; |