| 1208 | } |
| 1209 | |
| 1210 | void LASwriteOpener::set_parse_string(const CHAR* parse_string) |
| 1211 | { |
| 1212 | if (this->parse_string) free(this->parse_string); |
| 1213 | if (parse_string) |
| 1214 | { |
| 1215 | this->parse_string = LASCopyString(parse_string); |
| 1216 | } |
| 1217 | else |
| 1218 | { |
| 1219 | this->parse_string = 0; |
| 1220 | } |
| 1221 | } |
| 1222 | |
| 1223 | void LASwriteOpener::set_separator(const CHAR* separator) |
| 1224 | { |