ivif_nearpoint.cpp 361 B

12345678910111213141516171819202122232425
  1. #include "ivif_nearpoint.h"
  2. ivif_nearpoint::ivif_nearpoint()
  3. {
  4. }
  5. ivif_nearpoint::~ivif_nearpoint()
  6. {
  7. }
  8. int ivif_nearpoint::FindNearPoint(const std::vector<iv::GPSData> & gpsMapLine,double fLon, double fLat, double fHeading)
  9. {
  10. (void)gpsMapLine;
  11. (void)fLon;
  12. (void)fLat;
  13. (void)fHeading;
  14. return -1;
  15. }
  16. void ivif_nearpoint::ResetFind()
  17. {
  18. }