diff options
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&); } |