rall2d_io.h
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 #ifndef Rall2d_IO_H
00019 #define Rall2d_IO_H
00020 
00021 
00022 
00023 #include "utility_io.h"
00024 #include "rall2d.h"
00025 
00026 namespace KDL {
00027 
00028 template <class T,class V,class S>
00029 std::ostream& operator << (std::ostream& os,const Rall2d<T,V,S>& r)
00030             {
00031             os << "Rall2d(" << r.t <<"," << r.d <<","<<r.dd<<")";
00032             return os;
00033             }
00034 
00035 
00036 }
00037 
00038 #endif