vpgl_io_lvcs.h
Go to the documentation of this file.
1 #ifndef vpgl_io_lvcs_h_
2 #define vpgl_io_lvcs_h_
3 //:
4 // \file
5 #include <vsl/vsl_binary_io.h>
6 #include <vpgl/vpgl_lvcs.h>
7 #include <vpgl/vpgl_lvcs_sptr.h>
8 
9 //: Binary save lvcs to stream
10 void vsl_b_write(vsl_b_ostream & os, vpgl_lvcs const& lvcs);
11 
12 //: Binary load lvcs from stream.
13 void vsl_b_read(vsl_b_istream & is, vpgl_lvcs &lvcs);
14 
15 //: Print human readable summary of object to a stream
16 void vsl_print_summary(std::ostream& os,const vpgl_lvcs & l);
17 
18 //: Binary save lvcs sptr to stream
19 void vsl_b_write(vsl_b_ostream & os, vpgl_lvcs_sptr const& lvcs_sptr);
20 
21 //: Binary load lvcs from stream.
22 void vsl_b_read(vsl_b_istream & is, vpgl_lvcs_sptr &lvcs);
23 
24 #endif
A geographic coordinate system.
void vsl_print_summary(std::ostream &os, const vpgl_lvcs &l)
Print human readable summary of object to a stream.
void vsl_b_read(vsl_b_istream &is, vpgl_lvcs &lvcs)
Binary load lvcs from stream.
void vsl_b_write(vsl_b_ostream &os, vpgl_lvcs const &lvcs)
Binary save lvcs to stream.
Definition: vpgl_io_lvcs.cxx:7