@{ * Deletes the transformation on the top of the stack and sets the top * to the next transformation on the stack. */
| 241 | * to the next transformation on the stack. |
| 242 | */ |
| 243 | void Pop() |
| 244 | { |
| 245 | if (this->Stack == nullptr) |
| 246 | { |
| 247 | return; |
| 248 | } |
| 249 | this->Stack->Pop(&this->Concatenation); |
| 250 | this->Modified(); |
| 251 | } |
| 252 | ///@} |
| 253 | |
| 254 | ///@{ |