Delete a VLR from the vlr list.
| 653 | /// Delete a VLR from the vlr list. |
| 654 | /// |
| 655 | void LasWriter::deleteVlr(const std::string& userId, uint16_t recordId) |
| 656 | { |
| 657 | las::Vlr v{userId, recordId}; |
| 658 | |
| 659 | Utils::remove(m_vlrs, v); |
| 660 | Utils::remove(m_evlrs, v); |
| 661 | } |
| 662 | |
| 663 | |
| 664 | template <typename T> |