vgl_io_homg_point_1d.h
Go to the documentation of this file.
1 // This is core/vgl/io/vgl_io_homg_point_1d.h
2 #ifndef vgl_io_homg_point_1d_h_
3 #define vgl_io_homg_point_1d_h_
4 //:
5 // \file
6 // \author Peter Vanroose
7 // \date 24 Oct 2002
8 
10 #include <vsl/vsl_binary_io.h>
11 
12 //: Binary save vgl_homg_point_1d to stream.
13 template <class T>
14 void vsl_b_write(vsl_b_ostream& os, vgl_homg_point_1d<T> const& p);
15 
16 //: Binary load vgl_homg_point_1d from stream.
17 template <class T>
18 void vsl_b_read(vsl_b_istream& is, vgl_homg_point_1d<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_homg_point_1d<T> const& p);
23 
24 #endif // vgl_io_homg_point_1d_h_
a point in homogeneous 1-D space, i.e., a homogeneous pair (x,w)
void vsl_print_summary(std::ostream &os, vgl_homg_point_1d< T > const &p)
Print human readable summary of object to a stream.
void vsl_b_read(vsl_b_istream &is, vgl_homg_point_1d< T > &p)
Binary load vgl_homg_point_1d from stream.
Represents a homogeneous 1-D point, i.e., a homogeneous pair (x,w).
Definition: vgl_fwd.h:7
void vsl_b_write(vsl_b_ostream &os, vgl_homg_point_1d< T > const &p)
Binary save vgl_homg_point_1d to stream.