s/Uint/UInt/g
[ACE_TAO.git] / TAO / tao / Wait_Strategy.cpp
blobfc13c417789957e94c05ae91d1918001b4a9f552
1 #include "tao/Wait_Strategy.h"
3 #if !defined (__ACE_INLINE__)
4 # include "tao/Wait_Strategy.inl"
5 #endif /* __ACE_INLINE__ */
7 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
9 // Constructor.
10 TAO_Wait_Strategy::TAO_Wait_Strategy (TAO_Transport *transport)
11 : transport_ (transport),
12 is_registered_ (false)
16 // Destructor.
17 TAO_Wait_Strategy::~TAO_Wait_Strategy ()
21 int
22 TAO_Wait_Strategy::defer_upcall (ACE_Event_Handler*)
24 return -1;
27 int
28 TAO_Wait_Strategy::sending_request (TAO_ORB_Core *, TAO_Message_Semantics)
30 return 0;
33 void
34 TAO_Wait_Strategy::finished_request ()
38 TAO_END_VERSIONED_NAMESPACE_DECL