12345678910111213141516171819202122232425 |
- #include "ivif_nearpoint.h"
- ivif_nearpoint::ivif_nearpoint()
- {
- }
- ivif_nearpoint::~ivif_nearpoint()
- {
- }
- int ivif_nearpoint::FindNearPoint(const std::vector<iv::GPSData> & gpsMapLine,double fLon, double fLat, double fHeading)
- {
- (void)gpsMapLine;
- (void)fLon;
- (void)fLat;
- (void)fHeading;
- return -1;
- }
- void ivif_nearpoint::ResetFind()
- {
- }
|