diff options
Diffstat (limited to 'ace/Timer_List.h')
-rw-r--r-- | ace/Timer_List.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ace/Timer_List.h b/ace/Timer_List.h index 95b4157d215..d4411080746 100644 --- a/ace/Timer_List.h +++ b/ace/Timer_List.h @@ -46,6 +46,9 @@ protected: // Pointer to the <ACE_Timer_List> that we are iterating over. }; +// Forward declaration. +class ACE_Upcall_Strategy; + class ACE_Export ACE_Timer_List : public ACE_Timer_Queue // = TITLE // Provides a simple implementation of timers. @@ -68,7 +71,7 @@ class ACE_Export ACE_Timer_List : public ACE_Timer_Queue friend class ACE_Timer_List_Iterator; public: // = Initialization and termination methods. - ACE_Timer_List (void); + ACE_Timer_List (ACE_Upcall_Strategy *upcall_strategy = 0); // Default constructor. virtual ~ACE_Timer_List (void); |