00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file Timer_Wheel.h 00006 * 00007 * Timer_Wheel.h,v 1.13 2005/10/28 23:55:10 ossama Exp 00008 * 00009 * @author Darrell Brunsch (brunsch@cs.wustl.edu) 00010 */ 00011 //============================================================================= 00012 00013 00014 #ifndef ACE_TIMER_WHEEL_H 00015 #define ACE_TIMER_WHEEL_H 00016 #include /**/ "ace/pre.h" 00017 00018 #include "ace/Timer_Wheel_T.h" 00019 00020 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00021 # pragma once 00022 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00023 00024 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00025 00026 // The following typedefs are here for ease of use and backward 00027 // compatibility. 00028 00029 typedef ACE_Timer_Wheel_T<ACE_Event_Handler *, 00030 ACE_Event_Handler_Handle_Timeout_Upcall<ACE_SYNCH_RECURSIVE_MUTEX>, 00031 ACE_SYNCH_RECURSIVE_MUTEX> 00032 ACE_Timer_Wheel; 00033 00034 typedef ACE_Timer_Wheel_Iterator_T<ACE_Event_Handler *, 00035 ACE_Event_Handler_Handle_Timeout_Upcall<ACE_SYNCH_RECURSIVE_MUTEX>, 00036 ACE_SYNCH_RECURSIVE_MUTEX> 00037 ACE_Timer_Wheel_Iterator; 00038 00039 ACE_END_VERSIONED_NAMESPACE_DECL 00040 00041 #include /**/ "ace/post.h" 00042 #endif /* ACE_TIMER_WHEEL_H */