vnl_io_vector_fixed.h
Go to the documentation of this file.
1 // This is core/vnl/io/vnl_io_vector_fixed.h
2 #ifndef vnl_io_vector_fixed_h
3 #define vnl_io_vector_fixed_h
4 //:
5 // \file
6 // \author Amitha Perera
7 // \date Oct 2002
8 
9 #include <iosfwd>
10 #include <vsl/vsl_fwd.h>
11 #include <vnl/vnl_vector_fixed.h>
12 #ifdef _MSC_VER
13 # include <vcl_msvc_warnings.h>
14 #endif
15 
16 //: Binary save vnl_vector_fixed to stream.
17 // \relatesalso vnl_vector_fixed
18 template <class T, unsigned n>
19 void vsl_b_write(vsl_b_ostream & os, const vnl_vector_fixed<T,n> & v);
20 
21 //: Binary load vnl_vector_fixed from stream.
22 // \relatesalso vnl_vector_fixed
23 template <class T, unsigned n>
24 void vsl_b_read(vsl_b_istream & is, vnl_vector_fixed<T,n> & v);
25 
26 //: Print human readable summary of object to a stream
27 // \relatesalso vnl_vector_fixed
28 template <class T, unsigned n>
29 void vsl_print_summary(std::ostream & os,const vnl_vector_fixed<T,n> & b);
30 
31 #endif // vnl_io_vector_fixed_h
void vsl_print_summary(std::ostream &os, vnl_bignum const &b)
Print human readable summary of object to a stream.
#define v
Definition: vnl_vector.h:42
void vsl_b_read(vsl_b_istream &is, vnl_bignum &v)
Binary load vnl_bignum from stream.
void vsl_b_write(vsl_b_ostream &os, vnl_bignum const &v)
Binary save vnl_bignum to stream.
Fixed length stack-stored, space-efficient vector.
Definition: vnl_fwd.h:22
Fixed length stack-stored vector.