| 75 | String description; |
| 76 | ParameterType paramType; |
| 77 | ParameterDef( const String &newName, const String &newDescription, ParameterType newType ) : |
| 78 | name( newName ), |
| 79 | description( newDescription ), |
| 80 | paramType( newType ) |
| 81 | { |
| 82 | } |
| 83 | }; |
| 84 | typedef vector<ParameterDef>::type ParameterList; |
| 85 |
no outgoing calls
no test coverage detected