Free Electron
UnitThrust.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 __mobility_UnitThrust_h__
8 #define __mobility_UnitThrust_h__
9 
10 #include "signal/signal.h"
11 #include "math/math.h"
12 #include "datatool/datatool.h"
13 #include "shape/shape.h"
14 #include "mobilityAS.h"
15 
16 namespace fe
17 {
18 
19 /** Dummy test object
20 
21  @copydoc UnitThrust_info
22  */
23 class FE_DL_EXPORT UnitThrust :
24  public Initialize<UnitThrust>,
25  virtual public HandlerI,
26  virtual public Config
27 {
28  public:
29  UnitThrust(void);
30 virtual ~UnitThrust(void);
31 
32  void initialize(void);
33 
34  // AS HandlerI
35 virtual void handle( Record &r_sig);
36 
37  private:
38  AsMobile m_asMobile;
39  AsParticle m_asParticle;
40 };
41 
42 } /* namespace */
43 
44 #endif /* __mobility_UnitThrust_h__ */
45 
Dummy test object.
Definition: UnitThrust.h:23
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Reference to an instance of a Layout.
Definition: RecordSB.h:35