Free Electron
PotentialNav.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 __ai_PotentialNav_h__
8 #define __ai_PotentialNav_h__
9 
10 #include "signal/signal.h"
11 #include "math/math.h"
12 #include "datatool/datatool.h"
13 #include "shape/shape.h"
14 #include "mobility/mobilityAS.h"
15 #include "aiAS.h"
16 
17 namespace fe
18 {
19 
20 /**
21  @copydoc PotentialNav_info
22  */
23 class FE_DL_EXPORT PotentialNav :
24  public Initialize<PotentialNav>,
25  virtual public HandlerI,
26  virtual public Config
27 {
28  public:
29  PotentialNav(void);
30 virtual ~PotentialNav(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  AsNav m_asNav;
41  AsNavable m_asNavable;
42 };
43 
44 } /* namespace */
45 
46 #endif /* __ai_PotentialNav_h__ */
47 
Definition: PotentialNav.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