#ifndef ORIENTENDBOUNDINGBOX_H #define ORIENTENDBOUNDINGBOX_H #include #include #include namespace GMapping{ template class OrientedBoundingBox { public: OrientedBoundingBox(std::vector< point > p); double area(); protected: Point ul; Point ur; Point ll; Point lr; }; #include "orientedboundingbox.hxx" };// end namespace #endif