| 250 | } |
| 251 | |
| 252 | void Executable::AddOptions(const ExecutableOptions& options) { |
| 253 | this->options_list.push_back(options); |
| 254 | this->SortOptions(); |
| 255 | } |
| 256 | |
| 257 | const std::vector<ExecutableOptions>& Executable::GetOptions() const { return this->options_list; } |
| 258 |