00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SPLINE_GIO_H
00010 #define SPLINE_GIO_H
00011
00012 #include <spline/Bspline.hpp>
00013 #include <spline/PeriodicBspline.hpp>
00014 #include <graphics/GraphicsInterface.hpp>
00015
00016
00017 namespace imaging
00018 {
00023 GraphicsInterface & operator<<(GraphicsInterface & out, const Bspline< ublas::fixed_vector<float_t, 2> > & curve);
00024
00029 GraphicsInterface & operator<<(GraphicsInterface & out, const PeriodicBspline< ublas::fixed_vector<float_t, 2> > & curve);
00030 }
00031
00032
00033 #endif