#ifndef LOGGER_H_6E7B9594 #define LOGGER_H_6E7B9594 #include void TrackerLog(const std::string& text); #endif /* end of include guard: LOGGER_H_6E7B9594 */ le='Atom feed' href='https://code.fourisland.com/lingo-ap-tracker/atom/area_popup.h?h=v0.5.7' type='application/atom+xml'/>
about summary refs log tree commit diff stats
blob: c3de4bba3d6002e963076cf0f6e62145fe90cbb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef AREA_POPUP_H_03FAC988
#define AREA_POPUP_H_03FAC988

#include <wx/wxprec.h>

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

class AreaPopup : public wxPanel {
 public:
  AreaPopup(wxWindow* parent, int area_id);

 private:
  int area_id_;
};

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