Extracted submodule
This commit is contained in:
commit
7c814c591b
15 changed files with 757 additions and 0 deletions
27
include/osmnode.hpp
Normal file
27
include/osmnode.hpp
Normal file
|
@ -0,0 +1,27 @@
|
|||
#pragma once
|
||||
#include <vector>
|
||||
|
||||
#include <util.hpp>
|
||||
#include <osmimember.hpp>
|
||||
#include <osmtag.hpp>
|
||||
|
||||
namespace osmp
|
||||
{
|
||||
class Object;
|
||||
|
||||
class INode : public IMember
|
||||
{
|
||||
public:
|
||||
INode(const INode& other) = delete;
|
||||
INode(const INode&& other) = delete;
|
||||
virtual ~INode() {}
|
||||
|
||||
friend Node CreateNode(const tinyxml2::XMLElement* element, Object* parent);
|
||||
|
||||
protected:
|
||||
INode(const tinyxml2::XMLElement* xml, Object* parent);
|
||||
|
||||
public:
|
||||
double lat, lon;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue