| 669 | } |
| 670 | |
| 671 | void LASwriteOpener::set_appendix(const CHAR* appendix) |
| 672 | { |
| 673 | if (this->appendix) free(this->appendix); |
| 674 | if (appendix) |
| 675 | { |
| 676 | this->appendix = LASCopyString(appendix); |
| 677 | if (file_name) add_appendix(); |
| 678 | } |
| 679 | else |
| 680 | { |
| 681 | this->appendix = 0; |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | void LASwriteOpener::set_cut(U32 cut) |
| 686 | { |