Free Electron
WorldPipeline.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __world_WorldPipeline_h__
8 #define __world_WorldPipeline_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /** This is a simulation pipeline, providing some useful assumptions.
15 
16  A Record of Layout "l_sim_hb" is used as a simulation heartbeat.
17 
18  Catalog item "WorldDataSet" is used as the rendevous for the main dataset
19  RecordGroup.
20 
21  */
22 class FE_DL_EXPORT WorldPipeline
23  : virtual public PipelineI,
24  virtual public Config,
25  public Initialize<WorldPipeline>
26 {
27  public:
28  WorldPipeline(void);
29 virtual ~WorldPipeline(void);
30  void initialize(void);
31 
32  // AS PipelineI
33 virtual void attach( sp<ApplicationI> a_application,
34  sp<SignalerI> a_signaler,
35  sp<SequencerI> a_sequencer,
36  sp<Layout> l_hb,
37  sp<RecordGroup> rg_input);
38 
39  private:
40  sp<SignalerI> m_spSignaler;
41  sp<LayoutDefault> l_sim_hb;
42  sp<LayoutDefault> l_init;
43  sp<LayoutDefault> l_data;
44 };
45 
46 } /* namespace ext */
47 } /* namespace fe */
48 
49 #endif /* __world_WorldPipeline_h__ */
50 
Convienience base class for specification and use of path accessors.
Definition: Config.h:19
kernel
Definition: namespace.dox:3
This is a simulation pipeline, providing some useful assumptions.
Definition: WorldPipeline.h:22
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
application framework interface
Definition: PipelineI.h:16
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53