Free Electron
DrawRadio.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_DrawRadio_h__
8 #define __intelligence_DrawRadio_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /**************************************************************************//**
15  @brief Draw each communication span
16 
17  @ingroup intelligence
18 *//***************************************************************************/
19 class FE_DL_EXPORT DrawRadio: public DrawShape, public HandlerI
20 {
21  public:
22  DrawRadio(void) {}
23 
24  //* as HandlerI
25 virtual void handle(Record &record);
26 
27  private:
28  sp<DrawMode> m_spWireframe;
29 
30  Theater m_theaterRV;
31  Particle m_particleRV;
32  RecordArrayView<Radio> m_radioRAV;
33 };
34 
35 } /* namespace ext */
36 } /* namespace fe */
37 
38 #endif /* __intelligence_DrawRadio_h__ */
kernel
Definition: namespace.dox:3
Theater RecordView.
Definition: Theater.h:19
Draw shapes conveniently.
Definition: DrawShape.h:19
RecordView Iteration over a RecordArray.
Definition: RecordArrayView.h:37
Draw each communication span.
Definition: DrawRadio.h:19
Particle RecordView.
Definition: Particle.h:19
Interface to handle signals from an SignalerI.
Definition: HandlerI.h:22
Reference to an instance of a Layout.
Definition: RecordSB.h:35