| 46 | } |
| 47 | |
| 48 | char const* ArgMap::GetArgValue(char const* pName, int position) const |
| 49 | { |
| 50 | ElementXML_Handle hArg = GetArgHandle(pName, position) ; |
| 51 | |
| 52 | if (!hArg) |
| 53 | { |
| 54 | return NULL ; |
| 55 | } |
| 56 | |
| 57 | return ::soarxml_GetCharacterData(hArg) ; |
| 58 | } |
| 59 | |
| 60 | ElementXML_Handle ArgMap::GetArgHandle(char const* pName, int position) const |
| 61 | { |
no test coverage detected