What does
private: BOOL (LASreader::*read_simple)();
mean?
It\'s from LAStools, in lasreader.hpp
BOOL is a
BOOL
BOOL (LASreader::*read_simple)();
read_simple is a pointer to a member function of class LASreader that takes no arguments and returns a BOOL.
read_simple
LASreader