MapViewer/lib/osmparser/include/osmnode.hpp

20 lines
266 B
C++
Raw Normal View History

2021-04-14 19:04:08 +00:00
#pragma once
#include <vector>
#include "util.hpp"
2021-04-16 13:16:00 +00:00
#include <osmimember.hpp>
#include <osmtag.hpp>
2021-04-14 19:04:08 +00:00
namespace osmp
{
class Object;
2021-04-16 13:16:00 +00:00
class Node : public IMember
2021-04-14 19:04:08 +00:00
{
public:
Node(const tinyxml2::XMLElement* xml, Object* parent);
public:
2021-04-17 01:15:07 +00:00
double lat, lon;
2021-04-14 19:04:08 +00:00
};
}