diff options
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; |