core/vbl/io/vbl_io_array_2d.h
Go to the documentation of this file.
00001 // This is core/vbl/io/vbl_io_array_2d.h
00002 #ifndef vbl_io_array_2d_h
00003 #define vbl_io_array_2d_h
00004 //:
00005 // \file
00006 // \author K.Y.McGaul
00007 // \date   22-Mar-2001
00008 
00009 #include <vsl/vsl_fwd.h>
00010 #include <vbl/vbl_array_2d.h>
00011 #include <vcl_iosfwd.h>
00012 
00013 //: Binary save vbl_array_2d to stream.
00014 template <class T>
00015 void vsl_b_write(vsl_b_ostream & os, const vbl_array_2d<T> & v);
00016 
00017 //: Binary load vbl_array_2d from stream.
00018 template <class T>
00019 void vsl_b_read(vsl_b_istream & is, vbl_array_2d<T> & v);
00020 
00021 //: Print human readable summary of object to a stream
00022 template <class T>
00023 void vsl_print_summary(vcl_ostream & os,const vbl_array_2d<T> & b);
00024 
00025 #endif // vbl_io_array_2d_h