Free Electron
PointViewerSystem.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 __tire_PointViewerSystem_h__
8 #define __tire_PointViewerSystem_h__
9 
11 
12 namespace fe
13 {
14 namespace ext
15 {
16 
17 /**
18  */
19 class PointViewerSystem : virtual public ViewerSystem,
20  public Initialize<PointViewerSystem>
21 {
22  public:
23  PointViewerSystem(void);
24 virtual ~PointViewerSystem(void);
25  void initialize(void);
26 virtual void updatePoints(const t_note_id &note_id);
27 virtual void draw(Record viewportRecord);
28 virtual void connectOrchestrator(sp<OrchestratorI> orchestrator);
29 
30  private:
31  AsPoint m_asPoint;
32  std::vector<Record> m_points;
33 };
34 
35 } /* namespace ext */
36 } /* namespace fe */
37 
38 #endif /* __tire_PointViewerSystem_h__ */
39 
40 
kernel
Definition: namespace.dox:3