Skip to content

Commit

Permalink
Small clean-ups.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Sep 9, 2019
1 parent abdcb26 commit 310c993
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions filters/SeparateScanLineFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@

#include <pdal/Filter.hpp>

#include <map>
#include <string>

namespace pdal
{

Expand All @@ -49,6 +46,8 @@ class PDAL_DLL SeparateScanLineFilter : public Filter
{
public:
SeparateScanLineFilter();
SeparateScanLineFilter& operator=(const SeparateScanLineFilter&) = delete;
SeparateScanLineFilter(const SeparateScanLineFilter&) = delete;

std::string getName() const;

Expand All @@ -58,9 +57,6 @@ class PDAL_DLL SeparateScanLineFilter : public Filter
virtual void addArgs(ProgramArgs& args);
virtual void prepared(PointTableRef table);
virtual PointViewSet run(PointViewPtr view);

SeparateScanLineFilter& operator=(const SeparateScanLineFilter&); // not implemented
SeparateScanLineFilter(const SeparateScanLineFilter&); // not implemented
};

} // namespace pdal

0 comments on commit 310c993

Please sign in to comment.