Free Electron
PipelineI.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 __architecture_PipelineI_h__
8 #define __architecture_PipelineI_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /** application framework interface
15  */
16 class FE_DL_EXPORT PipelineI
17  : virtual public Component
18 {
19  public:
20 virtual void attach( sp<ApplicationI> a_application,
21  sp<SignalerI> a_signaler,
22  sp<SequencerI> a_sequencer,
23  sp<Layout> l_hb,
24  sp<RecordGroup> rg_input) = 0;
25 };
26 
27 } /* namespace ext */
28 } /* namespace fe */
29 
30 #endif /* __architecture_PipelineI_h__ */
31 
kernel
Definition: namespace.dox:3
application framework interface
Definition: PipelineI.h:16
Base for all interfacable components.
Definition: Component.h:20
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53