[Positioning] Stock: s/look for/search for/

This commit is contained in:
Matteo Cypriani 2011-05-09 16:39:55 +02:00
parent 3aae38c409
commit 920e4491ef
1 changed files with 11 additions and 11 deletions

View File

@ -41,16 +41,16 @@ public:
//@{
/// Read the Building corresponding to a given name
static const Building& get_building(const std::string &name) ;
/// Look for a Building and create it if it does not exist
/// Search for a Building and create it if it does not exist
static const Building& find_create_building(const std::string &name) ;
//@}
/** @name Waypoint operations */
//@{
/// Look for a Waypoint and add it if it does not exist
/// Search for a Waypoint and add it if it does not exist
static const Waypoint&
find_create_waypoint(const Waypoint &point) ;
/// \brief Look for a Waypoint from its coordinates and add it if it
/// \brief Search for a Waypoint from its coordinates and add it if it
/// does not exist
static const Waypoint&
find_create_waypoint(const Point3D &point) ;
@ -64,7 +64,7 @@ public:
//@{
/// Read the Mobile corresponding to a given MAC address
static const Mobile& get_mobile(const std::string &mac) ;
/// Look for a Mobile and create it if it does not exist
/// Search for a Mobile and create it if it does not exist
static const Mobile& find_create_mobile(const std::string &mac) ;
/// Get a reference to the Mobile corresponding to a given MAC address
static Mobile& getw_mobile(const std::string &mac) ;
@ -74,10 +74,10 @@ public:
//@{
/// Read the AccessPoint corresponding to a given MAC address
static const AccessPoint& get_ap(const std::string &mac) ;
/// Look for an AccessPoint and create it if it does not exist
/// Search for an AccessPoint and create it if it does not exist
static const AccessPoint& find_create_ap(const AccessPoint &source) ;
/// \brief Look for an AccessPoint given its MAC address and create it
/// if it does not exist
/// \brief Search for an AccessPoint given its MAC address and create
/// it if it does not exist
static const AccessPoint& find_create_ap(const std::string &mac) ;
/// Get a reference to the AccessPoint corresponding to a given MAC address
static AccessPoint& getw_ap(const std::string &mac) ;
@ -87,18 +87,18 @@ public:
/** @name ReferencePoint operations */
//@{
/// Look for a ReferencePoint and add it if it does not exist
/// Search for a ReferencePoint and add it if it does not exist
static const ReferencePoint&
find_create_reference_point(const ReferencePoint &point) ;
/// \brief Look for the closest ReferencePoint (in the signal strength
/// space) to a given Request
/// \brief Search for the closest ReferencePoint (in the signal
/// strength space) to a given Request
static const ReferencePoint&
closest_reference_point(const Request &request) ;
//@}
/** @name CalibrationRequest operations */
//@{
/// Look for a CalibrationRequest and add it if it does not exist
/// Search for a CalibrationRequest and add it if it does not exist
static const CalibrationRequest&
find_create_calibration_request(const CalibrationRequest &request) ;
//@}