summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch2/FileServerI.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2019-10-29 14:11:27 -0400
committerJoe George <joe@zeroc.com>2021-02-01 16:46:20 -0500
commit9f22d436c536c18df0e3c434162048490c80191f (patch)
treeda5257cb9435bcdbe3614e4f758e36244cac5ed0 /cpp/src/IcePatch2/FileServerI.h
parentFixed doxygen warnings and updated configs. (diff)
downloadice-9f22d436c536c18df0e3c434162048490c80191f.tar.bz2
ice-9f22d436c536c18df0e3c434162048490c80191f.tar.xz
ice-9f22d436c536c18df0e3c434162048490c80191f.zip
Remove IcePatch2 (#602)
Removed IcePatch2 and the corresponding distrib and patching features in IceGrid and IceGridGUI.
Diffstat (limited to 'cpp/src/IcePatch2/FileServerI.h')
-rw-r--r--cpp/src/IcePatch2/FileServerI.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/cpp/src/IcePatch2/FileServerI.h b/cpp/src/IcePatch2/FileServerI.h
deleted file mode 100644
index 311b72535a9..00000000000
--- a/cpp/src/IcePatch2/FileServerI.h
+++ /dev/null
@@ -1,56 +0,0 @@
-//
-// Copyright (c) ZeroC, Inc. All rights reserved.
-//
-
-#ifndef ICE_PATCH2_FILE_SERVER_I_H
-#define ICE_PATCH2_FILE_SERVER_I_H
-
-#include <IcePatch2Lib/Util.h>
-#include <IcePatch2/FileServer.h>
-
-namespace IcePatch2
-{
-
-class FileServerI : public FileServer
-{
-public:
-
- FileServerI(const std::string&, const LargeFileInfoSeq&);
-
- FileInfoSeq getFileInfoSeq(Ice::Int, const Ice::Current&) const;
-
- LargeFileInfoSeq
- getLargeFileInfoSeq(Ice::Int, const Ice::Current&) const;
-
- ByteSeqSeq getChecksumSeq(const Ice::Current&) const;
-
- Ice::ByteSeq getChecksum(const Ice::Current&) const;
-
- void getFileCompressed_async(const AMD_FileServer_getFileCompressedPtr&,
- const std::string&,
- Ice::Int,
- Ice::Int,
- const Ice::Current&) const;
-
- void getLargeFileCompressed_async(const AMD_FileServer_getLargeFileCompressedPtr&,
- const std::string&,
- Ice::Long,
- Ice::Int,
- const Ice::Current&) const;
-
-private:
-
- void
- getFileCompressedInternal(const std::string&,
- Ice::Long,
- Ice::Int,
- std::vector<Ice::Byte>&,
- bool) const;
-
- const std::string _dataDir;
- const IcePatch2Internal::FileTree0 _tree0;
-};
-
-}
-
-#endif