summaryrefslogtreecommitdiff
path: root/cpp/include/IcePatch/ClientUtil.h
diff options
context:
space:
mode:
authorZeroC Staff <git@zeroc.com>2002-09-27 17:23:24 +0000
committerZeroC Staff <git@zeroc.com>2002-09-27 17:23:24 +0000
commit312f717d93079fd788a9fe8d0668b55079ba87f0 (patch)
tree03501cec49af2fffb93b5fc1091a61d2ab937cdc /cpp/include/IcePatch/ClientUtil.h
parentadded RequestFailedException (diff)
downloadice-312f717d93079fd788a9fe8d0668b55079ba87f0.tar.bz2
ice-312f717d93079fd788a9fe8d0668b55079ba87f0.tar.xz
ice-312f717d93079fd788a9fe8d0668b55079ba87f0.zip
removed AbortException from IcePatch.ice
Diffstat (limited to 'cpp/include/IcePatch/ClientUtil.h')
-rw-r--r--cpp/include/IcePatch/ClientUtil.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/include/IcePatch/ClientUtil.h b/cpp/include/IcePatch/ClientUtil.h
index 1421200ed07..d6f73113dfc 100644
--- a/cpp/include/IcePatch/ClientUtil.h
+++ b/cpp/include/IcePatch/ClientUtil.h
@@ -13,11 +13,14 @@
#include <Ice/Ice.h>
#include <IcePatch/IcePatch.h>
+#include <IceUtil/Exception.h>
namespace IcePatch
{
-ICE_PATCH_API std::string pathToName(const std::string&);
+class ICE_PATCH_API AbortException : public IceUtil::Exception
+{
+};
class ICE_PATCH_API ProgressCB : public IceUtil::Mutex
{
@@ -41,6 +44,7 @@ public:
bool _aborted;
};
+ICE_PATCH_API std::string pathToName(const std::string&);
ICE_PATCH_API void getRegular(const IcePatch::RegularPrx&, ProgressCB&);
}