Add missing include guards to some headers

This commit is contained in:
Ben Payne 2015-01-06 00:42:33 -05:00
parent 3574ef838b
commit b2b950c84a
4 changed files with 20 additions and 1 deletions

View file

@ -20,6 +20,9 @@
// IN THE SOFTWARE.
//-----------------------------------------------------------------------------
#ifndef _MPOLYHEDRON_IMPL_H_
#define _MPOLYHEDRON_IMPL_H_
#include "math/mPlaneTransformer.h"
@ -503,3 +506,5 @@ void PolyhedronData::buildBoxData( Polyhedron& poly, const MatrixF& mat, const B
edge ++;
}
}
#endif // _MPOLYHEDRON_IMPL_H_