vgl_xio_box_3d.h
Go to the documentation of this file.
1 // This is core/vgl/xio/vgl_xio_box_3d.h
2 #ifndef vgl_xio_box_3d_h_
3 #define vgl_xio_box_3d_h_
4 //:
5 // \file
6 // \author Gamze Tunali
7 // \date Dec 19, 2005
8 
9 #include <string>
10 #include <iosfwd>
11 #include <vgl/vgl_box_3d.h>
12 #ifdef _MSC_VER
13 # include <vcl_msvc_warnings.h>
14 #endif
15 
16 //: XML save vgl_box_3d to stream.
17 template <class T>
18 void x_write(std::ostream &os, const vgl_box_3d<T> & v,
19  std::string element_name="vgl_box_3d");
20 
21 
22 #endif // vgl_xio_box_3d_h_
Contains class to represent a cartesian 3D bounding box.
void x_write(std::ostream &os, const vgl_box_3d< T > &v, std::string element_name="vgl_box_3d")
XML save vgl_box_3d to stream.
#define v
Definition: vgl_vector_2d.h:74
Represents a cartesian 3D box.
Definition: vgl_box_3d.h:65