Free Electron
Scan.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 __intelligence_Scan_h__
8 #define __intelligence_Scan_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /**************************************************************************//**
15  @brief Operate scanning abilities
16 
17  @ingroup intelligence
18 *//***************************************************************************/
19 class FE_DL_EXPORT Scan: virtual public HandlerI
20 {
21  public:
22  Scan(void) {}
23 
24  //* as HandlerI
25 virtual void handle(Record &record);
26 
27  private:
28 
29  sp<SelectorI> m_spSelectorI;
30  sp<FilterI> m_spFilterI;
31 
32  Operator m_selectOp;
33  Theater m_theaterRV;
34  Proxy m_proxyRV;
35  Controlled m_controlledRV;
36  Observation m_observationRV;
37  Cylinder m_cylinderRV;
38  RecordArrayView<Scanner> m_scannerRAV;
39 };
40 
41 } /* namespace ext */
42 } /* namespace fe */
43 
44 #endif /* __intelligence_Scan_h__ */
Controlled RecordView.
Definition: Controlled.h:19
kernel
Definition: namespace.dox:3
Cylinder RecordView.
Definition: Cylinder.h:27
Theater RecordView.
Definition: Theater.h:19
RecordView Iteration over a RecordArray.
Definition: RecordArrayView.h:37
Interface to handle signals from an SignalerI.
Definition: HandlerI.h:22
Observation RecordView.
Definition: Observation.h:22
Operate scanning abilities.
Definition: Scan.h:19
Reference to an instance of a Layout.
Definition: RecordSB.h:35
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53
Proxy RecordView.
Definition: Proxy.h:19
Operator RecordView.
Definition: Operator.h:22