| 67 | CHAR description[LAS_ATTRIBUTE_CHAR_LEN]; // 32 bytes incl termination |
| 68 | |
| 69 | LASattribute(U8 size) { |
| 70 | if (size == 0) throw; |
| 71 | memset(this, 0, sizeof(LASattribute)); |
| 72 | scale[0] = scale[1] = scale[2] = 1.0; |
| 73 | this->options = size; |
| 74 | }; |
| 75 | |
| 76 | LASattribute(U32 type, const CHAR* name, const CHAR* description = 0) { |
| 77 | if (type > LAS_ATTRIBUTE_F64) throw; |
nothing calls this directly
no test coverage detected