Skip to content

v0.2.53..v0.2.54 changeset RemoveInvalidReviewRelationsVisitor.h

Garret Voltz edited this page Mar 31, 2020 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/visitors/RemoveInvalidReviewRelationsVisitor.h b/hoot-core/src/main/cpp/hoot/core/visitors/RemoveInvalidReviewRelationsVisitor.h
index eb81cde..32e315a 100644
--- a/hoot-core/src/main/cpp/hoot/core/visitors/RemoveInvalidReviewRelationsVisitor.h
+++ b/hoot-core/src/main/cpp/hoot/core/visitors/RemoveInvalidReviewRelationsVisitor.h
@@ -22,13 +22,12 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2016, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2016, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 #ifndef REMOVEINVALIDREVIEWRELATIONSVISITOR_H
 #define REMOVEINVALIDREVIEWRELATIONSVISITOR_H
 
 #include <hoot/core/visitors/ElementOsmMapVisitor.h>
-#include <hoot/core/info/OperationStatusInfo.h>
 
 namespace hoot
 {
@@ -36,7 +35,7 @@ namespace hoot
 /**
  * Remove all empty review relations
  */
-class RemoveInvalidReviewRelationsVisitor : public ElementOsmMapVisitor, public OperationStatusInfo
+class RemoveInvalidReviewRelationsVisitor : public ElementOsmMapVisitor
 {
 public:
 
@@ -53,6 +52,8 @@ public:
   { return "Removed " + QString::number(_numAffected) + " empty review relations"; }
 
   virtual QString getDescription() const { return "Removes empty review relations"; }
+
+  virtual std::string getClassName() const { return className(); }
 };
 
 }
Clone this wiki locally