Free Electron
DrawPoints.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 __misc_DrawPoints_h__
8 #define __misc_DrawPoints_h__
9 
10 #include "signal/signal.h"
11 #include "draw/draw.h"
12 #include "window/window.h"
13 #include "shape/shape.h"
14 #include "viewer/DrawView.h"
15 #include "ai/aiAS.h"
16 #include "misc/misc.h"
17 
18 namespace fe
19 {
20 
21 class FE_DL_EXPORT DrawPoints :
22  public Initialize<DrawPoints>,
23  virtual public HandlerI,
24  virtual public Dispatch,
25  virtual public Config
26 {
27  public:
28  DrawPoints(void);
29 virtual ~DrawPoints(void);
30 
31  void initialize(void);
32 
33  // AS HandlerI
34 virtual void handle( Record &record);
35 
36  // AS DispatchI
37 virtual bool call(const String &a_name, std::vector<Instance> a_argv);
38 
39  private:
40  AsPoint m_asPoint;
41  DrawView m_drawview;
42 };
43 
44 } /* namespace */
45 
46 #endif /* __misc_DrawPoints_h__ */
47 
Definition: DrawPoints.h:21
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Automatically reference-counted string container.
Definition: String.h:128
Reference to an instance of a Layout.
Definition: RecordSB.h:35