geostat/gpx.h

25 wiersze
359 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
2019-10-03 22:43:39 +00:00
class GPX : public Api {
2019-09-08 16:42:10 +00:00
private:
std::list<gpx::WPT*> items;
gpx::GPX* root;
public:
explicit GPX(std::string path);
2019-09-08 16:42:10 +00:00
~GPX();
Cache get_cache(std::string code);
Caches get_user_caches(std::string uuid = "", int count = 0);
};