The Sparta Modeling Framework
|
Helper class for building a set of lines through an ostream-like interface. More...
#include <SimulationInfo.hpp>
Public Types | |
typedef std::ostream &(* | manip_t) (std::ostream &) |
Default Constructor. | |
Public Member Functions | |
template<class T > | |
LineStringStream & | operator<< (const T &t) |
Insertion operator on this LogObject. | |
LineStringStream & | operator<< (manip_t f) |
Handler for stream modifiers (e.g. endl) | |
void | addNewLine () |
Add a new line to the list. This is also called when std::endl is inserted into this stream. | |
std::vector< std::string > | getLines () const |
Gets the lines including whathever line is currently being built. | |
Helper class for building a set of lines through an ostream-like interface.
Definition at line 43 of file SimulationInfo.hpp.
typedef std::ostream &(* sparta::LineStringStream::manip_t) (std::ostream &) |
Default Constructor.
Definition at line 50 of file SimulationInfo.hpp.
|
inline |
Add a new line to the list. This is also called when std::endl is inserted into this stream.
Definition at line 83 of file SimulationInfo.hpp.
|
inline |
Gets the lines including whathever line is currently being built.
Definition at line 93 of file SimulationInfo.hpp.
|
inline |
Insertion operator on this LogObject.
Appends object to internal ostringstream
Definition at line 62 of file SimulationInfo.hpp.
|
inline |
Handler for stream modifiers (e.g. endl)
Definition at line 70 of file SimulationInfo.hpp.