diff options
author | Marc Laukien <marc@zeroc.com> | 2002-04-28 13:53:42 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-04-28 13:53:42 +0000 |
commit | ee69188a792f0d2b85838256496b51d685689fa1 (patch) | |
tree | 54c36305a192fadea82ee551b7b19ff35d97738f /cpp/include/IcePatch/Util.h | |
parent | python test scripts cleanup (diff) | |
download | ice-ee69188a792f0d2b85838256496b51d685689fa1.tar.bz2 ice-ee69188a792f0d2b85838256496b51d685689fa1.tar.xz ice-ee69188a792f0d2b85838256496b51d685689fa1.zip |
partial retransmission for IcePatch
Diffstat (limited to 'cpp/include/IcePatch/Util.h')
-rw-r--r-- | cpp/include/IcePatch/Util.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/include/IcePatch/Util.h b/cpp/include/IcePatch/Util.h index 945b95fc728..5b02b854761 100644 --- a/cpp/include/IcePatch/Util.h +++ b/cpp/include/IcePatch/Util.h @@ -47,6 +47,7 @@ ICE_PATCH_API Ice::StringSeq readDirectory(const std::string&); ICE_PATCH_API void createDirectory(const std::string&); ICE_PATCH_API Ice::ByteSeq getMD5(const std::string&); +ICE_PATCH_API Ice::ByteSeq getPartialMD5(const std::string&, Ice::Int); ICE_PATCH_API void createMD5(const std::string&); ICE_PATCH_API Ice::ByteSeq getBZ2(const std::string&, Ice::Int, Ice::Int); @@ -56,11 +57,11 @@ class ICE_PATCH_API ProgressCB { public: - virtual void startDownload(Ice::Int) = 0; + virtual void startDownload(Ice::Int, Ice::Int) = 0; virtual void updateDownload(Ice::Int, Ice::Int) = 0; virtual void finishedDownload(Ice::Int) = 0; - virtual void startUncompress(Ice::Int) = 0; + virtual void startUncompress(Ice::Int, Ice::Int) = 0; virtual void updateUncompress(Ice::Int, Ice::Int) = 0; virtual void finishedUncompress(Ice::Int) = 0; }; |