diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-13 20:38:58 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-13 20:38:58 +0000 |
commit | d9120dc9d13ba1f0d94cd1c210b9c3107c6f3776 (patch) | |
tree | 78a7e42e4b96b81006e73b5eb3cdfdc0c2a1000e /TAO/tao/Reply_Dispatcher.h | |
parent | f2fa842812a44f3ab1554bdafa203b17fd95bfc9 (diff) | |
download | ATCD-d9120dc9d13ba1f0d94cd1c210b9c3107c6f3776.tar.gz |
ChangeLogTag: Mon Nov 13 14:35:33 2000 Jeff Parsons <parsons@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Reply_Dispatcher.h')
-rw-r--r-- | TAO/tao/Reply_Dispatcher.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/TAO/tao/Reply_Dispatcher.h b/TAO/tao/Reply_Dispatcher.h index 48d56df63bc..274382c1850 100644 --- a/TAO/tao/Reply_Dispatcher.h +++ b/TAO/tao/Reply_Dispatcher.h @@ -67,7 +67,10 @@ public: // protocols implement different variants of such ClientReply // class. - virtual TAO_GIOP_Message_State *message_state (void); + CORBA::ULong reply_status (void) const; + // Get the reply status. + + virtual TAO_GIOP_Message_State *message_state (void) = 0; // Get the Message State into which the reply has been read. virtual void dispatcher_bound (TAO_Transport*) = 0; @@ -82,6 +85,10 @@ public: // message then we could re-issue the request instead of raising // the exception, it would a matter of simply adding a boolean // argument to this function. + +protected: + CORBA::ULong reply_status_; + // Reply or LocateReply status. }; #if defined (__ACE_INLINE__) |