Skip to content

v0.2.48..v0.2.49 changeset RoundaboutCriterion.h

Garret Voltz edited this page Oct 2, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/criterion/RoundaboutCriterion.h b/hoot-core/src/main/cpp/hoot/core/criterion/RoundaboutCriterion.h
index 73aad74..dc4d5d9 100644
--- a/hoot-core/src/main/cpp/hoot/core/criterion/RoundaboutCriterion.h
+++ b/hoot-core/src/main/cpp/hoot/core/criterion/RoundaboutCriterion.h
@@ -27,7 +27,8 @@
 #ifndef ROUNDABOUT_CRITERION_H
 #define ROUNDABOUT_CRITERION_H
 
-#include <hoot/core/criterion/ElementCriterion.h>
+// Hoot
+#include <hoot/core/criterion/GeometryTypeCriterion.h>
 
 namespace hoot
 {
@@ -37,7 +38,7 @@ class Element;
 /**
  * Identifies road roundabout junctions
  */
-class RoundaboutCriterion : public ElementCriterion
+class RoundaboutCriterion : public GeometryTypeCriterion
 {
 public:
 
@@ -50,6 +51,13 @@ public:
   virtual ElementCriterionPtr clone() { return ElementCriterionPtr(new RoundaboutCriterion()); }
 
   virtual QString getDescription() const { return "Identifies road roundabout junctions"; }
+
+  virtual GeometryType getGeometryType() const
+  { return GeometryType::Line; }
+
+  virtual QString toString() const override
+  { return QString::fromStdString(className()).remove("hoot::"); }
+
 };
 
 }
Clone this wiki locally