summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-12-28 17:05:58 +0000
committerMarc Laukien <marc@zeroc.com>2002-12-28 17:05:58 +0000
commit1ccaa5669d409bc5cc939984550a17ef696121eb (patch)
tree8d80b7131c9c41d39ed90a2942ac1c8910c40c9a /cpp
parentmore AMI (diff)
downloadice-1ccaa5669d409bc5cc939984550a17ef696121eb.tar.bz2
ice-1ccaa5669d409bc5cc939984550a17ef696121eb.tar.xz
ice-1ccaa5669d409bc5cc939984550a17ef696121eb.zip
minor fix
Diffstat (limited to 'cpp')
-rw-r--r--cpp/include/Ice/OutgoingAsync.h5
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;