Skip to content

Commit

Permalink
Added UL
Browse files Browse the repository at this point in the history
  • Loading branch information
Garrett Potts committed Mar 16, 2017
1 parent c1ecc86 commit 3c13837
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ossimVMTITrack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RTTI_DEF1(ossimVMTITrack, "ossimVMTITrack", ossimObject);

ossimVMTITrack::ossimVMTITrack()
:m_targetID(0),
m_trackStartTime(18446744073709551615),
m_trackStartTime(18446744073709551615UL),
m_trackEndTime(0),
m_trackFrameStart(OSSIM_DEFAULT_MAX_PIX_UINT32),
m_trackFrameEnd(0),
Expand Down Expand Up @@ -133,11 +133,15 @@ geos::geom::Geometry* ossimVMTITrack::getCentroidTrack()
geos::geom::Geometry* ossimVMTITrack::setGroundTrack(geos::geom::Geometry* source)
{
m_groundTrack = source;

return m_groundTrack;
}

geos::geom::Geometry* ossimVMTITrack::setCentroidTrack(geos::geom::Geometry* source)
{
m_centroidTrack = source;

return m_centroidTrack;
}

ossimString ossimVMTITrack::getGroundTrackWKT()const
Expand Down

0 comments on commit 3c13837

Please sign in to comment.