Load INI file data direct from a std::string @param a_strData Data to be loaded @return SI_Error See error definitions */
| 644 | @return SI_Error See error definitions |
| 645 | */ |
| 646 | SI_Error LoadData(const std::string &a_strData) { |
| 647 | return LoadData(a_strData.c_str(), a_strData.size()); |
| 648 | } |
| 649 | |
| 650 | /** Load INI file data direct from memory |
| 651 |
nothing calls this directly
no outgoing calls
no test coverage detected