diff options
Diffstat (limited to 'ap_state.h')
-rw-r--r-- | ap_state.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ap_state.h b/ap_state.h index 8f27a23..ce7bafc 100644 --- a/ap_state.h +++ b/ap_state.h | |||
@@ -43,11 +43,16 @@ class APState { | |||
43 | 43 | ||
44 | int64_t GetItemId(const std::string& item_name); | 44 | int64_t GetItemId(const std::string& item_name); |
45 | 45 | ||
46 | void DestroyClient(); | ||
47 | |||
46 | TrackerFrame* tracker_frame_; | 48 | TrackerFrame* tracker_frame_; |
47 | 49 | ||
48 | bool client_active_ = false; | 50 | bool client_active_ = false; |
49 | std::mutex client_mutex_; | 51 | std::mutex client_mutex_; |
50 | 52 | ||
53 | bool connected_ = false; | ||
54 | bool has_connection_result_ = false; | ||
55 | |||
51 | std::set<int64_t> inventory_; | 56 | std::set<int64_t> inventory_; |
52 | std::set<int64_t> checked_locations_; | 57 | std::set<int64_t> checked_locations_; |
53 | 58 | ||