diff options
Diffstat (limited to 'cpp/include/Ice/AsyncResult.h')
-rw-r--r-- | cpp/include/Ice/AsyncResult.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/cpp/include/Ice/AsyncResult.h b/cpp/include/Ice/AsyncResult.h index e8aea029007..e2c1d53d53b 100644 --- a/cpp/include/Ice/AsyncResult.h +++ b/cpp/include/Ice/AsyncResult.h @@ -51,20 +51,20 @@ public: virtual const std::string& getOperation() const = 0; - virtual bool __wait() = 0; - virtual Ice::InputStream* __startReadParams() = 0; - virtual void __endReadParams() = 0; - virtual void __readEmptyParams() = 0; - virtual void __readParamEncaps(const ::Ice::Byte*&, ::Ice::Int&) = 0; - virtual void __throwUserException() = 0; + virtual bool waitForResponse() = 0; + virtual Ice::InputStream* startReadParams() = 0; + virtual void endReadParams() = 0; + virtual void readEmptyParams() = 0; + virtual void readParamEncaps(const ::Ice::Byte*&, ::Ice::Int&) = 0; + virtual void throwUserException() = 0; - static void __check(const AsyncResultPtr&, const ::IceProxy::Ice::Object*, const ::std::string&); - static void __check(const AsyncResultPtr&, const Connection*, const ::std::string&); - static void __check(const AsyncResultPtr&, const Communicator*, const ::std::string&); + static void check(const AsyncResultPtr&, const ::IceProxy::Ice::Object*, const ::std::string&); + static void check(const AsyncResultPtr&, const Connection*, const ::std::string&); + static void check(const AsyncResultPtr&, const Communicator*, const ::std::string&); protected: - static void __check(const AsyncResultPtr&, const ::std::string&); + static void check(const AsyncResultPtr&, const ::std::string&); }; } |