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 #ifndef PRINTABLE_OBJECT_HPP
00024 #define PRINTABLE_OBJECT_HPP
00025
00026 #include <iostream>
00027 #include <string>
00028 #include <sstream>
00029 #include <streambuf>
00030 #include <vector>
00031
00032 namespace CasADi{
00033
00038 class PrintableObject{
00039 public:
00040
00041 #ifndef SWIG
00042
00043 virtual void print(std::ostream &stream=std::cout) const;
00044
00046 virtual void repr(std::ostream &stream=std::cout) const;
00047
00049 friend std::ostream& operator<<(std::ostream &stream, const PrintableObject& obj);
00050 #endif // SWIG
00051
00053 std::string getRepresentation() const;
00054
00056 std::string getDescription() const;
00057
00058 };
00059
00060 #ifdef SWIG
00061 %extend PrintableObject{
00062 std::string __str__() { return $self->getDescription(); }
00063 std::string __repr__() { return $self->getRepresentation(); }
00064 }
00065 #endif // SWIG
00066
00067 }
00068
00069
00070 #endif // PRINTABLE_OBJECT_HPP
00071