| 120 | typedef VariableState::SetBy SetBy; |
| 121 | |
| 122 | static inline bool IsValidName(char const* name) |
| 123 | { |
| 124 | return (name && (std::strlen(name) > 0)) ? true : false; |
| 125 | } |
| 126 | |
| 127 | Object* RegisterCommand(CommandDesc const& desc) |
| 128 | { |
nothing calls this directly
no outgoing calls
no test coverage detected