diff --git a/hoot-core/src/main/cpp/hoot/core/ops/WayJoinerOp.h b/hoot-core/src/main/cpp/hoot/core/ops/WayJoinerOp.h
index aa69754..3ea98fc 100644
--- a/hoot-core/src/main/cpp/hoot/core/ops/WayJoinerOp.h
+++ b/hoot-core/src/main/cpp/hoot/core/ops/WayJoinerOp.h
@@ -22,7 +22,7 @@
* This will properly maintain the copyright information. DigitalGlobe
* copyrights will be updated automatically.
*
- * @copyright Copyright (C) 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
#ifndef __WAY_JOINER_OP_H__
@@ -31,12 +31,12 @@
// Hoot
#include <hoot/core/ops/OsmMapOperation.h>
#include <hoot/core/util/Configurable.h>
-#include <hoot/core/info/OperationStatusInfo.h>
+#include <hoot/core/algorithms/WayJoiner.h>
namespace hoot
{
-class WayJoinerOp : public OsmMapOperation, public Configurable, public OperationStatusInfo
+class WayJoinerOp : public OsmMapOperation, public Configurable
{
public:
@@ -60,6 +60,13 @@ public:
virtual QString getCompletedStatusMessage() const
{ return "Rejoined " + QString::number(_numAffected) + " ways"; }
+ /**
+ * @see FilteredByCriteria
+ */
+ virtual QStringList getCriteria() const;
+
+ virtual std::string getClassName() const { return className(); }
+
private:
std::shared_ptr<WayJoiner> _wayJoiner;