// -*- C++ -*- ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE TQ * ACE_Thread_Timer_Queue_Adapter::timer_queue () const { return this->timer_queue_; } template ACE_INLINE int ACE_Thread_Timer_Queue_Adapter::timer_queue (TQ *tq) { if (this->delete_timer_queue_) delete this->timer_queue_; else if (this->timer_queue_) this->timer_queue_->close (); this->timer_queue_ = tq; this->delete_timer_queue_ = false; return 0; } template ACE_INLINE ACE_thread_t ACE_Thread_Timer_Queue_Adapter::thr_id () const { return this->thr_id_; } ACE_END_VERSIONED_NAMESPACE_DECL