diff --git a/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/SampledAngleHistogramExtractor.h b/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/SampledAngleHistogramExtractor.h
index d21d120..b6eb62a 100644
--- a/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/SampledAngleHistogramExtractor.h
+++ b/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/SampledAngleHistogramExtractor.h
@@ -23,7 +23,7 @@
* copyrights will be updated automatically.
*
* @copyright Copyright (C) 2005 VividSolutions (http://www.vividsolutions.com/)
- * @copyright Copyright (C) 2015, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
#ifndef SAMPLED_ANGLE_HISTOGRAM_EXTRACTOR_H
#define SAMPLED_ANGLE_HISTOGRAM_EXTRACTOR_H
@@ -53,16 +53,19 @@ public:
static std::string className() { return "hoot::SampledAngleHistogramExtractor"; }
- virtual std::string getClassName() const override { return SampledAngleHistogramExtractor::className(); }
+ virtual std::string getClassName() const override
+ { return SampledAngleHistogramExtractor::className(); }
virtual void setConfiguration(const Settings& conf) override;
void setSampleDistance(double sampleDistance) { _sampleDistance = sampleDistance; }
-
void setHeadingDelta(double headingDelta) { _headingDelta = headingDelta; }
virtual QString getDescription() const override
- { return "Calculates the angle of each line segment in a sampled fashion and adds it to a histogram"; }
+ {
+ return
+ "Calculates the angle of each line segment in a sampled fashion and adds it to a histogram";
+ }
protected: