| 42 | { |
| 43 | |
| 44 | void NitfFileWriter::initialize() |
| 45 | { |
| 46 | try |
| 47 | { |
| 48 | register_tre_plugins(); |
| 49 | } |
| 50 | catch (const pdal_error& err) |
| 51 | { |
| 52 | throw error(err.what()); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | |
| 57 | void NitfFileWriter::addArgs(ProgramArgs& args) |
nothing calls this directly
no test coverage detected