Advertisement
Guest User

GeoDataCoordinates_cpp.diff

a guest
May 23rd, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. --- GeoDataCoordinates_original.cpp 2011-12-20 20:19:12.000000000 +0100
  2. +++ GeoDataCoordinates.cpp 2012-05-23 18:37:59.435292900 +0200
  3. @@ -1185,4 +1185,44 @@
  4. d->m_q = Quaternion::fromSpherical( d->m_lon, d->m_lat );
  5. }
  6.  
  7. +void GeoDataCoordinates::setType( int type )
  8. +{
  9. + d->type = type;
  10. }
  11. +
  12. +int GeoDataCoordinates::getType() const
  13. +{
  14. + return d->type;
  15. +}
  16. +
  17. +//void GeoDataCoordinates::setClock( MarbleClock* clock )
  18. +//{
  19. +// d->m_clock = clock;
  20. +//}
  21. +
  22. +//MarbleClock* GeoDataCoordinates::getClock()
  23. +//{
  24. +// return d->m_clock;
  25. +//}
  26. +
  27. +void GeoDataCoordinates::setTime( double time )
  28. +{
  29. + d->m_time = time;
  30. +}
  31. +
  32. +double GeoDataCoordinates::getTime() const
  33. +{
  34. + return d->m_time;
  35. +}
  36. +
  37. +void GeoDataCoordinates::setOld( const bool old ) const
  38. +{
  39. + d->m_old = old;
  40. +}
  41. +
  42. +bool GeoDataCoordinates::isOld() const
  43. +{
  44. + return d->m_old;
  45. +}
  46. +
  47. +}
  48. \ No newline at end of file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement