summaryrefslogtreecommitdiff
path: root/ace/Timer_Queue_Adapters.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Timer_Queue_Adapters.inl')
-rw-r--r--ace/Timer_Queue_Adapters.inl29
1 files changed, 0 insertions, 29 deletions
diff --git a/ace/Timer_Queue_Adapters.inl b/ace/Timer_Queue_Adapters.inl
deleted file mode 100644
index e66168bbe98..00000000000
--- a/ace/Timer_Queue_Adapters.inl
+++ /dev/null
@@ -1,29 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template<class TQ> ACE_INLINE TQ *
-ACE_Thread_Timer_Queue_Adapter<TQ>::timer_queue (void) const
-{
- return this->timer_queue_;
-}
-
-template<class TQ> ACE_INLINE int
-ACE_Thread_Timer_Queue_Adapter<TQ>::timer_queue (TQ *tq)
-{
- if (this->delete_timer_queue_ != 0)
- delete this->timer_queue_;
- this->timer_queue_ = tq;
- this->delete_timer_queue_ = 0;
- return 0;
-}
-
-template<class TQ> ACE_INLINE ACE_thread_t
-ACE_Thread_Timer_Queue_Adapter<TQ>::thr_id (void) const
-{
- return this->thr_id_;
-}
-
-ACE_END_VERSIONED_NAMESPACE_DECL