Skip to content

v0.2.47..v0.2.48 changeset ElementProvider.h

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/elements/ElementProvider.h b/hoot-core/src/main/cpp/hoot/core/elements/ElementProvider.h
index 01a49e4..f44feb5 100644
--- a/hoot-core/src/main/cpp/hoot/core/elements/ElementProvider.h
+++ b/hoot-core/src/main/cpp/hoot/core/elements/ElementProvider.h
@@ -51,25 +51,19 @@ public:
   virtual std::shared_ptr<OGRSpatialReference> getProjection() const = 0;
 
   virtual bool containsElement(const ElementId& eid) const = 0;
-
   virtual ConstElementPtr getElement(const ElementId& id) const = 0;
 
   virtual const ConstNodePtr getNode(long id) const = 0;
-
   virtual const NodePtr getNode(long id) = 0;
 
   virtual const ConstRelationPtr getRelation(long id) const = 0;
-
   virtual const RelationPtr getRelation(long id) = 0;
 
   virtual const ConstWayPtr getWay(long id) const = 0;
-
   virtual const WayPtr getWay(long id) = 0;
 
   virtual bool containsNode(long id) const = 0;
-
   virtual bool containsRelation(long id) const = 0;
-
   virtual bool containsWay(long id) const = 0;
 };
 
Clone this wiki locally