| 2151 | } |
| 2152 | |
| 2153 | void ExternalCommandProcessor::ChangeCustomEventcommandVar(double, const std::vector<String>& arguments) |
| 2154 | { |
| 2155 | EventCommand::Ptr command = EventCommand::GetByName(arguments[0]); |
| 2156 | |
| 2157 | if (!command) |
| 2158 | BOOST_THROW_EXCEPTION(std::invalid_argument("Cannot change custom var for non-existent command '" + arguments[0] + "'")); |
| 2159 | |
| 2160 | ChangeCustomCommandVarInternal(command, arguments[1], arguments[2]); |
| 2161 | } |
| 2162 | |
| 2163 | void ExternalCommandProcessor::ChangeCustomNotificationcommandVar(double, const std::vector<String>& arguments) |
| 2164 | { |
nothing calls this directly
no outgoing calls
no test coverage detected