MapViewer/lib/osmparser/include/osmnode.hpp

20 lines
266 B
C++
Raw Normal View History

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