diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-03-09 13:31:46 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-03-09 13:31:46 +0100 |
commit | 317dd62b7112b590efe99283ceb4b2e5e5649884 (patch) | |
tree | 4df9cfc065c67e616010437b483dd97d2aba717b /ACE/Kokyu/Kokyu_dsrt.h | |
parent | 60d97734bef3939bb7ed54170fbcf9a1b459b496 (diff) | |
download | ATCD-317dd62b7112b590efe99283ceb4b2e5e5649884.tar.gz |
Documentation, layout, C++11 changes
Diffstat (limited to 'ACE/Kokyu/Kokyu_dsrt.h')
-rw-r--r-- | ACE/Kokyu/Kokyu_dsrt.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/ACE/Kokyu/Kokyu_dsrt.h b/ACE/Kokyu/Kokyu_dsrt.h index 11f24ec1eac..eb5de72b987 100644 --- a/ACE/Kokyu/Kokyu_dsrt.h +++ b/ACE/Kokyu/Kokyu_dsrt.h @@ -84,21 +84,21 @@ namespace Kokyu template <class DSRT_Scheduler_Traits> class DSRT_Dispatcher_Factory : private ACE_Copy_Disabled - { - public: - typedef std::unique_ptr<DSRT_Dispatcher<DSRT_Scheduler_Traits> > DSRT_Dispatcher_Auto_Ptr; - - /** - * Create a dispatcher for dynamic dispatching of threads. - * This will be used to dynamic scheduling of distributable threads for - * DSRTCORBA. The caller is responsible for freeing the memory. - * - * @param config Configuration information for the DSRT dispatcher. - * - * @return pointer to the DSRT dispatcher. - */ - static DSRT_Dispatcher<DSRT_Scheduler_Traits>* create_DSRT_dispatcher (const DSRT_ConfigInfo&); - }; + { + public: + typedef std::unique_ptr<DSRT_Dispatcher<DSRT_Scheduler_Traits> > DSRT_Dispatcher_Auto_Ptr; + + /** + * Create a dispatcher for dynamic dispatching of threads. + * This will be used to dynamic scheduling of distributable threads for + * DSRTCORBA. The caller is responsible for freeing the memory. + * + * @param config Configuration information for the DSRT dispatcher. + * + * @return pointer to the DSRT dispatcher. + */ + static DSRT_Dispatcher<DSRT_Scheduler_Traits>* create_DSRT_dispatcher (const DSRT_ConfigInfo&); + }; /** * @class MIF_Sched_Strategy |