summaryrefslogtreecommitdiff
path: root/cpp/include/IcePatch2/Util.h
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-11-28 22:57:21 +0000
committerMarc Laukien <marc@zeroc.com>2004-11-28 22:57:21 +0000
commit30172b32f4560d346f30e745088dda6428041415 (patch)
tree511283ad4d992f792928b3649f44bdbb623dae42 /cpp/include/IcePatch2/Util.h
parentGlacier2 was missing from Slice directories (diff)
downloadice-30172b32f4560d346f30e745088dda6428041415.tar.bz2
ice-30172b32f4560d346f30e745088dda6428041415.tar.xz
ice-30172b32f4560d346f30e745088dda6428041415.zip
IcePatch2 for WIN32
Diffstat (limited to 'cpp/include/IcePatch2/Util.h')
-rw-r--r--cpp/include/IcePatch2/Util.h28
1 files changed, 2 insertions, 26 deletions
diff --git a/cpp/include/IcePatch2/Util.h b/cpp/include/IcePatch2/Util.h
index da189191e80..ea2cc2468e2 100644
--- a/cpp/include/IcePatch2/Util.h
+++ b/cpp/include/IcePatch2/Util.h
@@ -7,13 +7,11 @@
//
// **********************************************************************
-#ifndef ICE_PATCH2_UPDATE_H
-#define ICE_PATCH2_UPDATE_H
+#ifndef ICE_PATCH2_UTIL_H
+#define ICE_PATCH2_UTIL_H
#include <Ice/Ice.h>
-#include <IceUtil/Thread.h>
#include <IcePatch2/FileInfo.h>
-#include <list>
namespace IcePatch2
{
@@ -100,28 +98,6 @@ struct FileTree0
ICE_PATCH2_API void getFileTree1(const FileInfoSeq&, FileTree1&);
ICE_PATCH2_API void getFileTree0(const FileInfoSeq&, FileTree0&);
-class ICE_PATCH2_API Decompressor : public IceUtil::Thread, public IceUtil::Monitor<IceUtil::Mutex>
-{
-public:
-
- Decompressor();
- virtual ~Decompressor();
-
- void destroy();
- void add(const std::string&);
- void checkForException() const;
-
- virtual void run();
-
-private:
-
- bool _destroy;
- std::string _exception;
- std::list<std::string> _files;
-};
-
-typedef IceUtil::Handle<Decompressor> DecompressorPtr;
-
}
#endif