core/vnl/io/vnl_io_vector_fixed.h
Go to the documentation of this file.
00001 // This is core/vnl/io/vnl_io_vector_fixed.h
00002 #ifndef vnl_io_vector_fixed_h
00003 #define vnl_io_vector_fixed_h
00004 //:
00005 // \file
00006 // \author Amitha Perera
00007 // \date Oct 2002
00008 
00009 #include <vsl/vsl_fwd.h>
00010 #include <vnl/vnl_vector_fixed.h>
00011 #include <vcl_iosfwd.h>
00012 
00013 //: Binary save vnl_vector_fixed to stream.
00014 //  \relatesalso vnl_vector_fixed
00015 template <class T, unsigned n>
00016 void vsl_b_write(vsl_b_ostream & os, const vnl_vector_fixed<T,n> & v);
00017 
00018 //: Binary load vnl_vector_fixed from stream.
00019 //  \relatesalso vnl_vector_fixed
00020 template <class T, unsigned n>
00021 void vsl_b_read(vsl_b_istream & is, vnl_vector_fixed<T,n> & v);
00022 
00023 //: Print human readable summary of object to a stream
00024 //  \relatesalso vnl_vector_fixed
00025 template <class T, unsigned n>
00026 void vsl_print_summary(vcl_ostream & os,const vnl_vector_fixed<T,n> & b);
00027 
00028 #endif // vnl_io_vector_fixed_h