diff options
author | Marc Laukien <marc@zeroc.com> | 2002-12-28 17:05:58 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-12-28 17:05:58 +0000 |
commit | 1ccaa5669d409bc5cc939984550a17ef696121eb (patch) | |
tree | 8d80b7131c9c41d39ed90a2942ac1c8910c40c9a /cpp | |
parent | more AMI (diff) | |
download | ice-1ccaa5669d409bc5cc939984550a17ef696121eb.tar.bz2 ice-1ccaa5669d409bc5cc939984550a17ef696121eb.tar.xz ice-1ccaa5669d409bc5cc939984550a17ef696121eb.zip |
minor fix
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/include/Ice/OutgoingAsync.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/include/Ice/OutgoingAsync.h b/cpp/include/Ice/OutgoingAsync.h index 422a4651d81..568ba86e221 100644 --- a/cpp/include/Ice/OutgoingAsync.h +++ b/cpp/include/Ice/OutgoingAsync.h @@ -34,7 +34,6 @@ public: virtual ~OutgoingAsync(); virtual void ice_exception(const ::IceUtil::Exception&) = 0; - virtual void __response(bool) = 0; void __setup(const ConnectionPtr&, const ReferencePtr&, const std::string&, ::Ice::OperationMode, const ::Ice::Context&); @@ -46,6 +45,10 @@ public: BasicStream* __is(); BasicStream* __os(); +protected: + + virtual void __response(bool) = 0; + private: void warning(const ::Ice::Exception&) const; |