MapViewer/lib/osmparser/include/osmnode.hpp

20 lines
265 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:
float lat, lon;
};
}