Skip to content

v0.2.53..v0.2.54 changeset GeometryModifierOp.h

Garret Voltz edited this page Mar 31, 2020 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/ops/GeometryModifierOp.h b/hoot-core/src/main/cpp/hoot/core/ops/GeometryModifierOp.h
index a5f5f51..e537fcf 100644
--- a/hoot-core/src/main/cpp/hoot/core/ops/GeometryModifierOp.h
+++ b/hoot-core/src/main/cpp/hoot/core/ops/GeometryModifierOp.h
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 
 #ifndef GEOMETRYMODIFIEROP_H
@@ -31,7 +31,6 @@
 // Hoot
 #include <hoot/core/elements/OsmMap.h>
 #include <hoot/core/ops/OsmMapOperation.h>
-#include <hoot/core/info/OperationStatusInfo.h>
 #include <hoot/core/util/Configurable.h>
 #include <hoot/core/visitors/geometrymodifiers/GeometryModifierVisitor.h>
 
@@ -57,7 +56,7 @@ namespace hoot
    * GeometryModifierVisitor to go through all map elements to apply each specified action.
    * Each action is performed on the entire map before it moves on to the next action.
    */
-  class GeometryModifierOp : public OsmMapOperation, public OperationStatusInfo, public Configurable
+  class GeometryModifierOp : public OsmMapOperation, public Configurable
   {
   public:
 
@@ -78,6 +77,8 @@ namespace hoot
     // Configurable
     virtual void setConfiguration(const Settings& conf);
 
+    virtual std::string getClassName() const { return className(); }
+
   private:
     // json rules file name
     QString _rulesFileName;
Clone this wiki locally