@{ * Deletes the transformation on the top of the stack and sets the top * to the next transformation on the stack. */
| 374 | * to the next transformation on the stack. |
| 375 | */ |
| 376 | void Pop() |
| 377 | { |
| 378 | if (this->Stack == nullptr) |
| 379 | { |
| 380 | return; |
| 381 | } |
| 382 | this->Stack->Pop(&this->Concatenation); |
| 383 | this->Modified(); |
| 384 | } |
| 385 | ///@} |
| 386 | |
| 387 | /** |