#ifndef TRACKER_STATE_H_8639BC90 #define TRACKER_STATE_H_8639BC90 #include #include class TrackerState { public: void CalculateState(); bool IsLocationReachable(int area_id, int section_id); private: std::map, bool> reachability_; }; TrackerState& GetTrackerState(); #endif /* end of include guard: TRACKER_STATE_H_8639BC90 */ y'/>
about summary refs log tree commit diff stats
blob: d9a10e5e9a5c377b80d97cea9b6030ca7cd0aa94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21