TuttleOFX  1
ostream.hpp
Go to the documentation of this file.
00001 #ifndef _TERRY_POINT_OSTREAM_HPP_
00002 #define _TERRY_POINT_OSTREAM_HPP_
00003 
00004 
00005 template <typename T>
00006 std::ostream& operator<<( std::ostream& out, const boost::gil::point2<T>& p )
00007 {
00008         return out << "x:" << p.x << " y:" << p.y;
00009 }
00010 
00011 
00012 #endif