summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/OutgoingAsync.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Ice/OutgoingAsync.h')
-rw-r--r--cpp/include/Ice/OutgoingAsync.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/Ice/OutgoingAsync.h b/cpp/include/Ice/OutgoingAsync.h
index 5b5a232c5cb..f589790ebf9 100644
--- a/cpp/include/Ice/OutgoingAsync.h
+++ b/cpp/include/Ice/OutgoingAsync.h
@@ -36,14 +36,14 @@ public:
virtual void ice_exception(const Ice::Exception&) = 0;
void __finished(BasicStream&);
- void __finished(const Ice::LocalException&);
+ bool __finished(const Ice::LocalException&);
protected:
void __prepare(const Ice::ObjectPrx&, const std::string&, Ice::OperationMode, const Ice::Context&);
void __send();
- virtual void __response(bool) = 0;
+ virtual bool __response(bool) = 0;
BasicStream* __is;
BasicStream* __os;
@@ -82,7 +82,7 @@ public:
protected:
- virtual void __response(bool);
+ virtual bool __response(bool);
};
}