diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-13 14:38:52 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-13 14:38:52 +0000 |
commit | dbb73b11c029b64880c4a1f8bc2bc5eac208869e (patch) | |
tree | 771e1eb5328075ac323cf70bc6cf453626f86c26 /cpp/include/Ice/BasicStream.h | |
parent | error # in exceptions is now properly set (diff) | |
download | ice-dbb73b11c029b64880c4a1f8bc2bc5eac208869e.tar.bz2 ice-dbb73b11c029b64880c4a1f8bc2bc5eac208869e.tar.xz ice-dbb73b11c029b64880c4a1f8bc2bc5eac208869e.zip |
more exception cleanup
Diffstat (limited to 'cpp/include/Ice/BasicStream.h')
-rw-r--r-- | cpp/include/Ice/BasicStream.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/include/Ice/BasicStream.h b/cpp/include/Ice/BasicStream.h index d420e0b299c..0d98246f657 100644 --- a/cpp/include/Ice/BasicStream.h +++ b/cpp/include/Ice/BasicStream.h @@ -16,6 +16,13 @@ #include <Ice/ProxyF.h> #include <Ice/Buffer.h> +namespace Ice +{ + +class UserException; + +} + namespace IceInternal { @@ -92,6 +99,9 @@ public: void write(const ::Ice::ObjectPtr&); void read(::Ice::ObjectPtr&, const std::string&); + void write(const ::Ice::UserException&); + void read(::Ice::UserException*&, const std::string&); + private: InstancePtr _instance; |