Revert to Current Include Style
[ACE_TAO.git] / ACE / ace / Abstract_Timer_Queue.cpp
blob021c637fe6e1696b0fcd73f6f4dfcfdd935dc990
1 #ifndef ACE_ABSTRACT_TIMER_QUEUE_CPP
2 #define ACE_ABSTRACT_TIMER_QUEUE_CPP
3 #include "ace/config-all.h"
5 #if !defined (ACE_LACKS_PRAGMA_ONCE)
6 # pragma once
7 #endif /* ACE_LACKS_PRAGMA_ONCE */
9 #include "ace/Abstract_Timer_Queue.h"
11 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
13 // Even though the destructor is pure virtual you must provide an
14 // implementation. Most people know this, but sometimes we all
15 // forget, and we might be tempted to remove this code.
16 template<typename TYPE>
17 ACE_Abstract_Timer_Queue<TYPE>::
18 ~ACE_Abstract_Timer_Queue ()
22 ACE_END_VERSIONED_NAMESPACE_DECL
24 #endif /* ACE_ABSTRACT_TIMER_QUEUE_CPP */