|
You can convert an std::string to const char* with the c_str() function. And you can convert a const char* (or char*) to an std::string simply by passing the const char* as an argument to the std::string constructor.
Note that this doesn't have anything to do with Ice, that's simply standard C++.
|