geostat/gpx.h

25 wiersze
343 B
C++

#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);
};