about summary refs log blame commit diff stats
path: root/tracker_panel.h
blob: 49b4d23500b52bc72799f2b508d45b3e6e96aed4 (plain) (tree)





















                                                           
#ifndef TRACKER_PANEL_H_D675A54D
#define TRACKER_PANEL_H_D675A54D

#include <wx/wxprec.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

class TrackerPanel : public wxPanel {
public:
  TrackerPanel(wxWindow *parent);

private:
  void OnPaint(wxPaintEvent &event);

  void Redraw();

  wxImage map_image_;
  wxBitmap rendered_;
};

#endif /* end of include guard: TRACKER_PANEL_H_D675A54D */