Go to the documentation of this file.00001
00002 #ifndef vsl_vector_io_h_
00003 #define vsl_vector_io_h_
00004
00005
00006
00007
00008
00009 #include <vcl_iosfwd.h>
00010 #include <vcl_vector.h>
00011 #include <vsl/vsl_fwd.h>
00012
00013
00014 template <class T>
00015 void vsl_b_write(vsl_b_ostream& s, const vcl_vector<T>& v);
00016
00017
00018 template <class T>
00019 void vsl_b_read(vsl_b_istream& s, vcl_vector<T>& v);
00020
00021
00022 template <class T>
00023 void vsl_print_summary(vcl_ostream & os,const vcl_vector<T> &v);
00024
00025
00026
00027 template <>
00028 void vsl_b_write(vsl_b_ostream& s, const vcl_vector<bool>& v);
00029
00030
00031 template <>
00032 void vsl_b_read(vsl_b_istream& s, vcl_vector<bool>& v);
00033
00034
00035 template <>
00036 void vsl_print_summary(vcl_ostream & os,const vcl_vector<bool> &v);
00037
00038 #endif // vsl_vector_io_h_