Skip to content

v0.2.53..v0.2.54 changeset RecursiveSetTagValueOp.h

Garret Voltz edited this page Mar 31, 2020 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/ops/RecursiveSetTagValueOp.h b/hoot-core/src/main/cpp/hoot/core/ops/RecursiveSetTagValueOp.h
index efc35d7..6b5dc42 100644
--- a/hoot-core/src/main/cpp/hoot/core/ops/RecursiveSetTagValueOp.h
+++ b/hoot-core/src/main/cpp/hoot/core/ops/RecursiveSetTagValueOp.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 RECURSIVE_SET_TAG_VALUE_OP_H
@@ -30,7 +30,6 @@
 
 // Hoot
 #include <hoot/core/ops/OsmMapOperation.h>
-#include <hoot/core/info/OperationStatusInfo.h>
 #include <hoot/core/criterion/ElementCriterionConsumer.h>
 #include <hoot/core/visitors/SetTagValueVisitor.h>
 
@@ -40,8 +39,8 @@ namespace hoot
 /**
  * Allows for setting tags on elements and their children (way nodes, relation members)
  */
-class RecursiveSetTagValueOp : public OsmMapOperation, public OperationStatusInfo,
-  public ElementCriterionConsumer, public Configurable
+class RecursiveSetTagValueOp : public OsmMapOperation, public ElementCriterionConsumer,
+  public Configurable
 {
 public:
 
@@ -99,6 +98,8 @@ public:
    */
   virtual QString getCompletedStatusMessage() const { return _tagger->getCompletedStatusMessage(); }
 
+  virtual std::string getClassName() const { return className(); }
+
 private:
 
   ElementCriterionPtr _crit;
Clone this wiki locally