1
2
3
4
5
6
7
8
9
10
11
12
| #ifndef INTERPRETER_OPERATION_CONTAINER_HPP
| #define INTERPRETER_OPERATION_CONTAINER_HPP
|
| #include <vector>
|
| #include "Interpreter/Operation.hpp"
|
| namespace Interpreter {
| using OperationContainer = std::vector<Operation>;
| }; // namespace Interpreter
|
| #endif // INTERPRETER_OPERATION_CONTAINER_HPP
|
|