g2o
|
Abstract a position. More...
#include <position.hh>
Public Member Functions | |
position () | |
Construct a position. More... | |
void | initialize (std::string *fn) |
Initialization. More... | |
Line and Column related manipulators | |
void | lines (int count=1) |
(line related) Advance to the COUNT next lines. More... | |
void | columns (int count=1) |
(column related) Advance to the COUNT next columns. More... | |
Public Attributes | |
std::string * | filename |
File name to which this position refers. More... | |
unsigned int | line |
Current line number. More... | |
unsigned int | column |
Current column number. More... | |
Abstract a position.
Definition at line 55 of file position.hh.
|
inline |
Construct a position.
Definition at line 60 of file position.hh.
|
inline |
(column related) Advance to the COUNT next columns.
Definition at line 85 of file position.hh.
References column.
|
inline |
Initialization.
Definition at line 67 of file position.hh.
References column, filename, and line.
Referenced by SlamParser::location::initialize().
|
inline |
(line related) Advance to the COUNT next lines.
Definition at line 78 of file position.hh.
Referenced by SlamParser::location::lines().
unsigned int SlamParser::position::column |
Current column number.
Definition at line 97 of file position.hh.
Referenced by columns(), initialize(), lines(), and SlamParser::operator<<().
std::string* SlamParser::position::filename |
File name to which this position refers.
Definition at line 93 of file position.hh.
Referenced by initialize(), SlamParser::operator<<(), and SlamParser::Parser::parse().
unsigned int SlamParser::position::line |
Current line number.
Definition at line 95 of file position.hh.
Referenced by initialize(), lines(), and SlamParser::operator<<().