I'm trying to convert a string to an xmlChar. The compiler says no suitable conversion function from const string to xmlChar exists. This is what the code looks like:
bool ClassName::openFile(const String& ZipFile) { //convert const xmlChar *temp = (const xmlChar)ZipFile; //ZipFile has an error here. ZipFile is path and filename ... } Any ideas? I googled it and people were converting from xmlChar to string but not this direction.
const xmlChar *temp = (const xmlChar*)(ZipFile.c_str());const xmlChar *temp = (const xmlChar *)ZipFile.c_str();? see how to convert a std::string to const char or char