diff options
Diffstat (limited to 'src/tracker_frame.h')
-rw-r--r-- | src/tracker_frame.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/tracker_frame.h b/src/tracker_frame.h index 29745b4..76c071f 100644 --- a/src/tracker_frame.h +++ b/src/tracker_frame.h | |||
@@ -7,6 +7,10 @@ | |||
7 | #include <wx/wx.h> | 7 | #include <wx/wx.h> |
8 | #endif | 8 | #endif |
9 | 9 | ||
10 | #include <memory> | ||
11 | |||
12 | #include "updater.h" | ||
13 | |||
10 | class AchievementsPane; | 14 | class AchievementsPane; |
11 | class SubwayMap; | 15 | class SubwayMap; |
12 | class TrackerPanel; | 16 | class TrackerPanel; |
@@ -78,8 +82,8 @@ class TrackerFrame : public wxFrame { | |||
78 | void OnStatusChanged(wxCommandEvent &event); | 82 | void OnStatusChanged(wxCommandEvent &event); |
79 | void OnRedrawPosition(wxCommandEvent &event); | 83 | void OnRedrawPosition(wxCommandEvent &event); |
80 | void OnConnectToAp(ApConnectEvent &event); | 84 | void OnConnectToAp(ApConnectEvent &event); |
81 | 85 | ||
82 | void CheckForUpdates(bool manual); | 86 | std::unique_ptr<Updater> updater_; |
83 | 87 | ||
84 | wxSplitterWindow *splitter_window_; | 88 | wxSplitterWindow *splitter_window_; |
85 | wxNotebook *notebook_; | 89 | wxNotebook *notebook_; |