Skip to content

Commit

Permalink
Allow Layout::update override.
Browse files Browse the repository at this point in the history
  • Loading branch information
connormanning committed Mar 19, 2015
1 parent f6e4623 commit 6fb6e08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/pdal/PointLayout.hpp
Expand Up @@ -48,6 +48,7 @@ class PDAL_DLL PointLayout
{
public:
PointLayout();
virtual ~PointLayout() {}

void finalize();

Expand Down Expand Up @@ -95,7 +96,7 @@ class PDAL_DLL PointLayout
const Dimension::Detail *dimDetail(Dimension::Id::Enum id) const;

private:
bool update(Dimension::Detail dd, const std::string& name);
virtual bool update(Dimension::Detail dd, const std::string& name);

Dimension::Type::Enum resolveType(
Dimension::Type::Enum t1,
Expand Down

0 comments on commit 6fb6e08

Please sign in to comment.