vgl_io_conic.h
Go to the documentation of this file.
1 // This is core/vgl/io/vgl_io_conic.h
2 #ifndef vgl_io_conic_h
3 #define vgl_io_conic_h
4 //:
5 // \file
6 // \author Peter Vanroose
7 // \date 21-Sep-2001
8 
9 #include <vgl/vgl_conic.h>
10 #include <vsl/vsl_binary_io.h>
11 
12 //: Binary save vgl_conic to stream.
13 template <class T>
14 void vsl_b_write(vsl_b_ostream &os, vgl_conic<T> const& p);
15 
16 //: Binary load vgl_conic from stream.
17 template <class T>
18 void vsl_b_read(vsl_b_istream &is, vgl_conic<T> & p);
19 
20 //: Print human readable summary of object to a stream
21 template <class T>
22 void vsl_print_summary(std::ostream& os, vgl_conic<T> const& p);
23 
24 #define VGL_IO_CONIC_INSTANTIATE(T) extern "Please #include <vgl/io/vgl_io_conic.hxx>"
25 
26 #endif // vgl_io_conic_h
A quadratic plane curve.
void vsl_print_summary(std::ostream &os, vgl_conic< T > const &p)
Print human readable summary of object to a stream.
void vsl_b_write(vsl_b_ostream &os, vgl_conic< T > const &p)
Binary save vgl_conic to stream.
A quadratic plane curve.
Definition: vgl_conic.h:70
void vsl_b_read(vsl_b_istream &is, vgl_conic< T > &p)
Binary load vgl_conic from stream.