summaryrefslogtreecommitdiff
path: root/Kokyu/DSRT_Dispatch_Item_T.i
diff options
context:
space:
mode:
Diffstat (limited to 'Kokyu/DSRT_Dispatch_Item_T.i')
-rw-r--r--Kokyu/DSRT_Dispatch_Item_T.i70
1 files changed, 0 insertions, 70 deletions
diff --git a/Kokyu/DSRT_Dispatch_Item_T.i b/Kokyu/DSRT_Dispatch_Item_T.i
deleted file mode 100644
index fca64cea38d..00000000000
--- a/Kokyu/DSRT_Dispatch_Item_T.i
+++ /dev/null
@@ -1,70 +0,0 @@
-/* -*- C++ -*- */
-/**
- * @file DSRT_Dispatch_Item_T.i
- *
- * $Id$
- *
- * @author Venkita Subramonian (venkita@cs.wustl.edu)
- *
- */
-
-namespace Kokyu
-{
-
-template <class DSRT_Scheduler_Traits>
-ACE_INLINE
-DSRT_Dispatch_Item<DSRT_Scheduler_Traits>::
-DSRT_Dispatch_Item (Guid_t guid, const DSRT_QoSDescriptor& qos)
- :guid_ (guid), qos_ (qos)
-{
-}
-
-template <class DSRT_Scheduler_Traits>
-ACE_INLINE typename DSRT_Dispatch_Item<DSRT_Scheduler_Traits>::Guid_t
-DSRT_Dispatch_Item<DSRT_Scheduler_Traits>::
-guid ()
-{
- return guid_;
-}
-
-template <class DSRT_Scheduler_Traits>
-ACE_INLINE typename DSRT_Dispatch_Item<DSRT_Scheduler_Traits>::DSRT_QoSDescriptor
-DSRT_Dispatch_Item<DSRT_Scheduler_Traits>::
-qos ()
-{
- return qos_;
-}
-
-template <class DSRT_Scheduler_Traits>
-ACE_INLINE ACE_hthread_t
-DSRT_Dispatch_Item<DSRT_Scheduler_Traits>::
-thread_handle ()
-{
- return thr_handle_;
-}
-
-template <class DSRT_Scheduler_Traits>
-ACE_INLINE void
-DSRT_Dispatch_Item<DSRT_Scheduler_Traits>::
-thread_handle (ACE_hthread_t &handle)
-{
- thr_handle_ = handle;
-}
-
-template <class DSRT_Scheduler_Traits>
-ACE_INLINE void
-DSRT_Dispatch_Item<DSRT_Scheduler_Traits>::
-insertion_time (const ACE_Time_Value& tv)
-{
- this->insertion_time_ = tv;
-}
-
-template <class DSRT_Scheduler_Traits>
-ACE_INLINE ACE_Time_Value
-DSRT_Dispatch_Item<DSRT_Scheduler_Traits>::
-insertion_time ()
-{
- return this->insertion_time_;
-}
-
-}