about summary refs log tree commit diff stats
path: root/area_popup.h
diff options
context:
space:
mode:
Diffstat (limited to 'area_popup.h')
-rw-r--r--area_popup.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/area_popup.h b/area_popup.h new file mode 100644 index 0000000..c3de4bb --- /dev/null +++ b/area_popup.h
@@ -0,0 +1,18 @@
1#ifndef AREA_POPUP_H_03FAC988
2#define AREA_POPUP_H_03FAC988
3
4#include <wx/wxprec.h>
5
6#ifndef WX_PRECOMP
7#include <wx/wx.h>
8#endif
9
10class AreaPopup : public wxPanel {
11 public:
12 AreaPopup(wxWindow* parent, int area_id);
13
14 private:
15 int area_id_;
16};
17
18#endif /* end of include guard: AREA_POPUP_H_03FAC988 */