summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
Diffstat (limited to 'ace')
-rw-r--r--ace/Timer_Wheel.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/ace/Timer_Wheel.h b/ace/Timer_Wheel.h
new file mode 100644
index 00000000000..51a051814fe
--- /dev/null
+++ b/ace/Timer_Wheel.h
@@ -0,0 +1,30 @@
+/* -*- C++ -*- */
+
+// ============================================================================
+//
+// = LIBRARY
+// ace
+//
+// = FILENAME
+// Timer_Wheel.h
+//
+// = AUTHOR
+// Darrell Brunsch
+//
+// ============================================================================
+
+#if !defined (ACE_TIMER_WHEEL_H)
+#define ACE_TIMER_WHEEL_H
+
+#include "ace/Timer_Wheel_T.h"
+
+// The following typedef are here for ease of use and backward
+// compatibility.
+
+typedef ACE_Timer_Wheel_T<ACE_Event_Handler *, ACE_Event_Handler_Handle_Timeout_Upcall>
+ ACE_Timer_Wheel;
+
+typedef ACE_Timer_Wheel_Iterator_T<ACE_Event_Handler *, ACE_Event_Handler_Handle_Timeout_Upcall>
+ ACE_Timer_Wheel_Iterator;
+
+#endif /* ACE_TIMER_WHEEL_H */