Appends an operation and takes ownership
| 58 | |
| 59 | /// Appends an operation and takes ownership |
| 60 | void Manifest::append(Operation* operation_ptr) { |
| 61 | operations_.emplace_back(operation_ptr); |
| 62 | } |
| 63 | |
| 64 | /// Returns an iterator to the first operation |
| 65 | OperationVector const& Manifest::operations() const { |