| 317 | |
| 318 | namespace { |
| 319 | std::string convertToString(const VARIANT& value) { |
| 320 | std::stringstream os; |
| 321 | os << _bstr_t(value.bstrVal, true); |
| 322 | return os.str(); |
| 323 | } |
| 324 | |
| 325 | std::string getSafeArrayElementAsStr(SAFEARRAY **Strings, long idx) { |
| 326 | VARIANT value; |
no test coverage detected