diff --git a/hoot-core/src/main/cpp/hoot/core/visitors/MatchCandidateCountVisitor.h b/hoot-core/src/main/cpp/hoot/core/visitors/MatchCandidateCountVisitor.h
index 5c6381a..23776f6 100644
--- a/hoot-core/src/main/cpp/hoot/core/visitors/MatchCandidateCountVisitor.h
+++ b/hoot-core/src/main/cpp/hoot/core/visitors/MatchCandidateCountVisitor.h
@@ -22,7 +22,7 @@
* This will properly maintain the copyright information. DigitalGlobe
* copyrights will be updated automatically.
*
- * @copyright Copyright (C) 2015, 2016, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2016, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
#ifndef MATCH_CANDIDATE_COUNT_VISITOR_H
#define MATCH_CANDIDATE_COUNT_VISITOR_H
@@ -31,7 +31,6 @@
#include <hoot/core/conflate/stats/DataProducer.h>
#include <hoot/core/visitors/ElementConstOsmMapVisitor.h>
#include <hoot/core/info/SingleStatistic.h>
-#include <hoot/core/info/OperationStatusInfo.h>
#include <hoot/core/util/StringUtils.h>
namespace hoot
@@ -44,7 +43,7 @@ class MatchCreator;
* of match creators.
*/
class MatchCandidateCountVisitor : public ElementConstOsmMapVisitor, public SingleStatistic,
- public DataProducer, public OperationStatusInfo
+ public DataProducer
{
public:
@@ -68,6 +67,8 @@ public:
return "Counted " + StringUtils::formatLargeNumber(_totalCandidateCount) + " match candidates.";
}
+ virtual std::string getClassName() const { return className(); }
+
private:
QMap<QString, std::shared_ptr<MatchCreator>> _matchCreatorsByName;