| 67 | std::string::size_type m_hashPos; |
| 68 | |
| 69 | virtual void l_initialize(PointTableRef table) final |
| 70 | { |
| 71 | Writer::l_initialize(table); |
| 72 | try { |
| 73 | m_hashPos = handleFilenameTemplate(filename()); |
| 74 | } |
| 75 | catch (const pdal_error& err) |
| 76 | { |
| 77 | throwError(err.what()); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | std::string generateFilename() |
| 82 | { |
no test coverage detected