PUMA Library Reference Manual
|
#include <Puma/Printable.h>
Provides that possibility for an object to be used with output streams (std::ostream).
Derived classes have to implement method Printable::print().
Example:
Public Member Functions | |
virtual | ~Printable () |
Destructor. | |
virtual void | print (std::ostream &os) const =0 |
Print object information on the given output stream. | |
|
inlinevirtual |
Destructor.
|
pure virtual |
Print object information on the given output stream.
To be implemented by concrete objects.
os | The output stream. |
Implemented in Puma::Unit, Puma::CTypeInfo, Puma::ManipError, Puma::DeducedArgument, Puma::CT_SimpleName, Puma::CT_QualName, and Puma::Filename.