summaryrefslogtreecommitdiff
path: root/Kokyu/DSRT_Dispatcher_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kokyu/DSRT_Dispatcher_Impl.h')
-rw-r--r--Kokyu/DSRT_Dispatcher_Impl.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/Kokyu/DSRT_Dispatcher_Impl.h b/Kokyu/DSRT_Dispatcher_Impl.h
deleted file mode 100644
index f0ed126dbbc..00000000000
--- a/Kokyu/DSRT_Dispatcher_Impl.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/* -*- C++ -*- */
-/**
- * @file DSRT_Dispatcher_Impl.h
- *
- * $Id$
- *
- */
-
-#ifndef DSRT_DISPATCHER_IMPL_H
-#define DSRT_DISPATCHER_IMPL_H
-#include "ace/pre.h"
-#include "ace/OS.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/Task.h"
-#include "ace/Message_Block.h"
-#include "ace/Auto_Ptr.h"
-#include "ace/Service_Config.h"
-
-#include "ace/Sched_Params.h"
-
-#include "kokyu_export.h"
-#include "Kokyu.h"
-
-namespace Kokyu
-{
- class DSRT_Scheduler_Impl;
-
- class DSRT_Dispatcher_Impl
- {
- public:
-
- virtual ~DSRT_Dispatcher_Impl ();
-
- int init (const DSRT_ConfigInfo&);
- int schedule (guid_t guid,
- const DSRT_QoSDescriptor&);
- int update_schedule (guid_t guid,
- const DSRT_QoSDescriptor&);
- int cancel_schedule (guid_t guid,
- const DSRT_QoSDescriptor&);
-
- private:
-
- int init_i (const DSRT_ConfigInfo&);
- int schedule_i (guid_t guid,
- const DSRT_QoSDescriptor&);
- int update_schedule_i (guid_t guid,
- const DSRT_QoSDescriptor&);
- int cancel_schedule_i (guid_t guid,
- const DSRT_QoSDescriptor&);
-
- private:
- DSRT_ConfigInfo curr_config_info_;
- DSRT_Scheduler_Impl* scheduler_impl_;
- };
-
-} //end of namespace
-
-#if defined (__ACE_INLINE__)
-#include "DSRT_Dispatcher_Impl.i"
-#endif /* __ACE_INLINE__ */
-
-#include "ace/post.h"
-#endif /* DEFAULT_DISPATCHER_IMPL_H */