Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include "printable_object.hpp"
00024 #include <typeinfo>
00025 #include <sstream>
00026
00027
00028 using namespace std;
00029 namespace CasADi{
00030
00031 ostream& operator<<(ostream &stream, const PrintableObject& obj){
00032 obj.repr(stream);
00033 return stream;
00034 }
00035
00036 void PrintableObject::repr(std::ostream &stream) const{
00037
00038 print(stream);
00039 }
00040
00041 void PrintableObject::print(std::ostream &stream) const{
00042
00043 stream << typeid(this).name();
00044 }
00045
00046 string PrintableObject::getRepresentation() const{
00047 stringstream ss;
00048 repr(ss);
00049 return ss.str();
00050 }
00051
00052 string PrintableObject::getDescription() const{
00053 stringstream ss;
00054 print(ss);
00055 return ss.str();
00056 }
00057
00058
00059 }
00060
00061
00062