Hey
I need some way of converting stringc to char* because all the functions in the STL don't recognise stringc. Specifically I need to be able to use the atoi() function to convert to a number for the XML loader. How can I make this conversion?
This is a pretty general problem I have with the XML loader. Basically I can't use anything that isn't a string because the XML outputs to stringc which is something specific to Irrlicht. Without the ability to output to something other than stringc, any function outside Irrlicht can't use it. Has anyone else managed to use the output in any other way than a string?