TimePoint.cc | TimePoint.cc | |||
---|---|---|---|---|
skipping to change at line 25 | skipping to change at line 25 | |||
// You should have received a copy of the GNU Lesser General Public | // You should have received a copy of the GNU Lesser General Public | |||
// License along with this library; if not, write to the Free Software | // License along with this library; if not, write to the Free Software | |||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | |||
// | // | |||
// Email: | // Email: | |||
// mhadji@gmail.com | // mhadji@gmail.com | |||
#include <cstring> | #include <cstring> | |||
#include <limits> | #include <limits> | |||
#include "../../include/SpatialIndex.h" | #include <spatialindex/SpatialIndex.h> | |||
using namespace SpatialIndex; | using namespace SpatialIndex; | |||
TimePoint::TimePoint() | TimePoint::TimePoint() | |||
: Point(), m_startTime(-std::numeric_limits<double>::max()), m_endTi me(std::numeric_limits<double>::max()) | : Point(), m_startTime(-std::numeric_limits<double>::max()), m_endTi me(std::numeric_limits<double>::max()) | |||
{ | { | |||
} | } | |||
TimePoint::TimePoint(const double* pCoords, const IInterval& ti, uint32_t d imension) | TimePoint::TimePoint(const double* pCoords, const IInterval& ti, uint32_t d imension) | |||
: Point(pCoords, dimension), m_startTime(ti.getLowerBound()), m_endT ime(ti.getUpperBound()) | : Point(pCoords, dimension), m_startTime(ti.getLowerBound()), m_endT ime(ti.getUpperBound()) | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |