00001 // This file is part of the imaging2 class library. 00002 // 00003 // University of Innsbruck, Infmath Imaging, 2009. 00004 // http://infmath.uibk.ac.at 00005 // 00006 // All rights reserved. 00007 00008 00009 #ifndef SHAPE_GIO_H 00010 #define SHAPE_GIO_H 00011 00012 #include <shape/Circle.hpp> 00013 #include <shape/BsplineShape.hpp> 00014 #include <graphics/GraphicsInterface.hpp> 00015 00016 00017 namespace imaging 00018 { 00021 GraphicsInterface & operator<<(GraphicsInterface & out, const Circle & circle); 00022 00025 GraphicsInterface & operator<<(GraphicsInterface & out, const BsplineShape & spline_shape); 00026 } 00027 00028 00029 #endif