00001 // This is core/vbl/io/vbl_io_bounding_box.h 00002 #ifndef vbl_io_bounding_box_h 00003 #define vbl_io_bounding_box_h 00004 //: 00005 // \file 00006 // \author P D Allen 00007 // \date 21-Mar-2001 00008 00009 #include <vsl/vsl_fwd.h> 00010 #include <vbl/vbl_bounding_box.h> 00011 #include <vcl_iosfwd.h> 00012 00013 //: Binary save vbl_bounding_box to stream. 00014 template <class T, class DIM_> 00015 void vsl_b_write(vsl_b_ostream &os, const vbl_bounding_box_base<T, DIM_> & p); 00016 00017 //: Binary load vbl_bounding_box from stream. 00018 template <class T, class DIM_> 00019 void vsl_b_read(vsl_b_istream &is, vbl_bounding_box_base<T, DIM_> & p); 00020 00021 //: Print human readable summary of object to a stream 00022 template <class T, class DIM_> 00023 void vsl_print_summary(vcl_ostream& os,const vbl_bounding_box_base<T, DIM_> & p); 00024 00025 #endif // vbl_io_bounding_box_h