| 83 | } |
| 84 | |
| 85 | int AnalyzeXML::GetResultInt(int defaultValue) const |
| 86 | { |
| 87 | if (!m_pResult || m_pResult->GetCharacterData() == NULL) |
| 88 | { |
| 89 | return defaultValue ; |
| 90 | } |
| 91 | |
| 92 | int value = defaultValue; |
| 93 | from_c_string(value, m_pResult->GetCharacterData()); |
| 94 | |
| 95 | return value ; |
| 96 | } |
| 97 | |
| 98 | int64_t AnalyzeXML::GetResultInt(int64_t defaultValue) const |
| 99 | { |
nothing calls this directly
no test coverage detected