Free Electron
Construct.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_Construct_h__
8 #define __intelligence_Construct_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /**************************************************************************//**
15  @brief Operate building abilities
16 
17  @ingroup intelligence
18 *//***************************************************************************/
19 class FE_DL_EXPORT Construct: virtual public HandlerI
20 {
21  public:
22  Construct(void) {}
23 
24  //* as HandlerI
25 virtual void handle(Record &record);
26 
27  private:
28  sp<RecordGroup> generate(sp<RecordGroup> spPrototype);
29  BWORD build(sp<RecordGroup> spPrototype,
30  sp<RecordGroup> spSelection,F32 deltaT);
31 
32  Theater m_theaterRV;
33  Matter m_matterRV2;
34  RecordArrayView<Foundry> m_foundryRAV;
35  RecordArrayView<Matter> m_matterRAV;
36  RecordArrayView<Matter> m_matterRAV3;
37 };
38 
39 } /* namespace ext */
40 } /* namespace fe */
41 
42 #endif /* __intelligence_Construct_h__ */
Matter RecordView.
Definition: Matter.h:19
kernel
Definition: namespace.dox:3
Theater RecordView.
Definition: Theater.h:19
Operate building abilities.
Definition: Construct.h:19
RecordView Iteration over a RecordArray.
Definition: RecordArrayView.h:37
Interface to handle signals from an SignalerI.
Definition: HandlerI.h:22
Reference to an instance of a Layout.
Definition: RecordSB.h:35