[Positioning] Fix/add some Doxygen comments

This commit is contained in:
Matteo Cypriani 2011-04-06 14:10:51 +02:00
parent 2467c3261e
commit 878ee7e495
4 changed files with 9 additions and 1 deletions

View File

@ -31,6 +31,9 @@ bool Result::operator==(const Result &source) const
/**
* @return the result as a CSV string, \em without trailing '\n'.
*/
const string Result::to_csv() const
{
ostringstream csv_line ;

View File

@ -45,6 +45,9 @@ bool ResultList::operator==(const ResultList &source) const
/* *** Conversion accessors *** */
/**
* @return the results as a CSV string, \em without trailing '\n'.
*/
const string ResultList::to_csv() const
{
ostringstream csv_line ;

View File

@ -7,6 +7,8 @@ class Request ;
#include <vector>
#include <ostream>
/// \brief List of \link Result results \endlink of a single Request,
/// computed by one or more positioning algorithm
class ResultList
{
protected:

View File

@ -76,7 +76,7 @@ bool Waypoint::operator==(const Waypoint &wp) const
}
Waypoint::operator string() const
Waypoint::operator std::string() const
{
ostringstream csv ;
csv << (Point3D) *this ;