28 lines
376 B
C++
28 lines
376 B
C++
#ifndef TRACK_H
|
|
#define TRACK_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
struct Point {
|
|
float lat;
|
|
float lon;
|
|
float ele;
|
|
};
|
|
|
|
struct Track {
|
|
public:
|
|
std::vector<Point> points;
|
|
Point min;
|
|
Point max;
|
|
};
|
|
|
|
static std::vector<Track> tracks;
|
|
|
|
bool ParseFile(std::vector<Track> &out_tracks,
|
|
const std::string &file_and_path);
|
|
|
|
void draw(const Track &track);
|
|
|
|
#endif
|