| 82 | } |
| 83 | |
| 84 | LASwriteItemCompressed_POINT10_v2::~LASwriteItemCompressed_POINT10_v2() |
| 85 | { |
| 86 | U32 i; |
| 87 | |
| 88 | enc->destroySymbolModel(m_changed_values); |
| 89 | delete ic_intensity; |
| 90 | enc->destroySymbolModel(m_scan_angle_rank[0]); |
| 91 | enc->destroySymbolModel(m_scan_angle_rank[1]); |
| 92 | delete ic_point_source_ID; |
| 93 | for (i = 0; i < 256; i++) |
| 94 | { |
| 95 | if (m_bit_byte[i]) enc->destroySymbolModel(m_bit_byte[i]); |
| 96 | if (m_classification[i]) enc->destroySymbolModel(m_classification[i]); |
| 97 | if (m_user_data[i]) enc->destroySymbolModel(m_user_data[i]); |
| 98 | } |
| 99 | delete ic_dx; |
| 100 | delete ic_dy; |
| 101 | delete ic_z; |
| 102 | } |
| 103 | |
| 104 | BOOL LASwriteItemCompressed_POINT10_v2::init(const U8* item, U32& context) |
| 105 | { |
nothing calls this directly
no test coverage detected