| 2974 | return m_pSettings->GetFloat( pchSection, pchSettingsKey, peError ); |
| 2975 | } |
| 2976 | void GetString( const char *pchSection, const char *pchSettingsKey, VR_OUT_STRING() char *pchValue, uint32_t unValueLen, EVRSettingsError *peError = nullptr ) |
| 2977 | { |
| 2978 | m_pSettings->GetString( pchSection, pchSettingsKey, pchValue, unValueLen, peError ); |
| 2979 | } |
| 2980 | #ifndef OPENVR_NO_STL |
| 2981 | std::string GetString( const std::string & sSection, const std::string & sSettingsKey, EVRSettingsError *peError = nullptr ) |
| 2982 | { |
nothing calls this directly
no outgoing calls
no test coverage detected