[Positioning] Add Stock::nb_virtual_mobiles

This commit is contained in:
Matteo Cypriani 2011-07-21 14:38:21 +02:00
parent 1abe54b7be
commit d1b575c95e
2 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,8 @@ unordered_map<Point3D, Waypoint> Stock::waypoints ;
unordered_map<string, Mobile> Stock::mobiles ;
uint32_t Stock::nb_virtual_mobiles = 0 ;
unordered_map<string, AccessPoint> Stock::aps ;
unordered_set<ReferencePoint,

View File

@ -26,6 +26,9 @@ private:
/** The string key of the map is the Mobile MAC address. */
static std::tr1::unordered_map<std::string, Mobile> mobiles ;
/// Number of generated "virtual" mobiles
static uint32_t nb_virtual_mobiles ;
/// List of known AccessPoint
/** The string key of the map is the AccessPoint MAC address. */
static std::tr1::unordered_map<std::string, AccessPoint> aps ;