diff --git a/hoot-core/src/main/cpp/hoot/core/visitors/BuildingHeightVisitor.h b/hoot-core/src/main/cpp/hoot/core/visitors/BuildingHeightVisitor.h
index 8e5eeb1..51e21a0 100644
--- a/hoot-core/src/main/cpp/hoot/core/visitors/BuildingHeightVisitor.h
+++ b/hoot-core/src/main/cpp/hoot/core/visitors/BuildingHeightVisitor.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 BUILDING_HEIGHT_VISITOR_H
@@ -32,7 +32,6 @@
#include <hoot/core/elements/ConstElementVisitor.h>
#include <hoot/core/info/NumericStatistic.h>
#include <hoot/core/criterion/BuildingCriterion.h>
-#include <hoot/core/info/OperationStatusInfo.h>
// Qt
#include <QRegularExpression>
@@ -40,8 +39,7 @@
namespace hoot
{
-class BuildingHeightVisitor : public ConstElementVisitor, public NumericStatistic,
- public OperationStatusInfo
+class BuildingHeightVisitor : public ConstElementVisitor, public NumericStatistic
{
public:
@@ -71,6 +69,8 @@ public:
return average;
}
+ virtual std::string getClassName() const { return className(); }
+
private:
BuildingCriterion _crit;