geostat/gpx.h

25 wiersze
343 B
C
Czysty Zwykły widok Historia

2019-09-08 16:42:10 +00:00
#pragma once
#include "api.h"
#include <string>
#include <list>
namespace gpx {
class WPT;
class GPX;
} // namespace gpx
class GPX : Api {
private:
std::list<gpx::WPT*> items;
gpx::GPX* root;
public:
GPX(std::string path);
~GPX();
Cache get_cache(std::string code);
Caches get_user_caches(std::string uuid = "", int count = 0);
};