Free Electron
Mitosis.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 __bio_Mitosis_h__
8 #define __bio_Mitosis_h__
9 
10 #include "signal/signal.h"
11 #include "shape/shape.h"
12 #include "misc/misc.h"
13 
14 namespace fe
15 {
16 
17 class Mitosis : public Initialize<Mitosis>,
18  virtual public HandlerI,
19  virtual public Config
20 {
21  public:
22  Mitosis(void);
23 virtual ~Mitosis(void);
24  void initialize(void);
25 
26  // AS HandlerI
27 virtual void handle( Record &r_sig);
28 
29 
30  private:
31  AsParticle m_asParticle;
32 };
33 
34 } /* namespace */
35 
36 #endif /* __bio_Mitosis_h__ */
37 
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Definition: Mitosis.h:17
Reference to an instance of a Layout.
Definition: RecordSB.h:35