@{ * Deletes the transformation on the top of the stack and sets the top * to the next transformation on the stack. */
| 353 | * to the next transformation on the stack. |
| 354 | */ |
| 355 | void Pop() |
| 356 | { |
| 357 | if (this->Stack == nullptr) |
| 358 | { |
| 359 | return; |
| 360 | } |
| 361 | this->Stack->Pop(&this->Concatenation); |
| 362 | this->Modified(); |
| 363 | } |
| 364 | ///@} |
| 365 | |
| 366 | /** |