diff options
author | alex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-04 04:53:27 +0000 |
---|---|---|
committer | alex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-04 04:53:27 +0000 |
commit | ebc1597d9571abf3862314a77ef4c62e7846cf9a (patch) | |
tree | 47154820468225301de7343bfc4d2a569de23f78 /TAO/tao/Wait_Strategy.h | |
parent | 95b11c4c61c8ca1fd69a13dd1cdbf332cc4bdba0 (diff) | |
download | ATCD-ebc1597d9571abf3862314a77ef4c62e7846cf9a.tar.gz |
Removed dead comments.
Diffstat (limited to 'TAO/tao/Wait_Strategy.h')
-rw-r--r-- | TAO/tao/Wait_Strategy.h | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/TAO/tao/Wait_Strategy.h b/TAO/tao/Wait_Strategy.h index 0a5deae643d..ad5d1b93cc7 100644 --- a/TAO/tao/Wait_Strategy.h +++ b/TAO/tao/Wait_Strategy.h @@ -16,17 +16,9 @@ // // ============================================================================ -// @@ Alex: don't forget to protect your files against multiple -// inclusion: - #ifndef TAO_WAIT_STRATEGY_H #define TAO_WAIT_STRATEGY_H -// @@ Alex: why do you need this #include? -// @@ I just wanted some file to include ;-). I am taking it -// off. (Alex). -// #include "tao/GIOP.h" - #include "tao/CDR.h" class TAO_Request_Mux_Strategy; @@ -124,16 +116,21 @@ public: virtual ~TAO_Wait_On_Leader_Follower (void); // Destructor. - // = Documented in TAO_Wait_Strategy + // = Documented in TAO_Wait_Strategy. + virtual int sending_request (TAO_ORB_Core *orb_core, int two_way); + virtual int wait (void); + virtual int handle_input (void); + virtual int register_handler (void); protected: ACE_SYNCH_CONDITION* cond_response_available (void); - // Return the cond_response_available, initializing it if necessary. + // Return the cond_response_available, initializing it if + // necessary. void wake_up (void); // Helper method to wake us up when we are a follower... @@ -148,7 +145,6 @@ protected: int expecting_response_; // State flag which, if non-zero, indicates that we were expecting // respose. Otherwise, any input received is unexpected. - // @@ Do we need this anymore? (Alex). int reply_received_; // This flag indicates if a *complete* reply was received. Until |