blob: 547c693dd134a510d42edd6ebe2afd89459db625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* -*- C++ -*- */
// $Id$
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_;
}
|