diff options
author | ZeroC Staff <git@zeroc.com> | 2002-09-27 17:23:24 +0000 |
---|---|---|
committer | ZeroC Staff <git@zeroc.com> | 2002-09-27 17:23:24 +0000 |
commit | 312f717d93079fd788a9fe8d0668b55079ba87f0 (patch) | |
tree | 03501cec49af2fffb93b5fc1091a61d2ab937cdc /cpp/include/IcePatch/ClientUtil.h | |
parent | added RequestFailedException (diff) | |
download | ice-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.h | 6 |
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&); } |