Hi all. Thank you, Michael. Until now (I was developing with simply C++), I did not have very clear the 'namespace' concept. I've browsing the URLs you suggested.
Until now, I've been using (and it worked correctly): -------------------//----------------- DOM_Node Attribute; char *AttrValue; AttrValue = Attribute.getNodeValue().transcode(); ------------------//------------------- Taking advantage from your code, I tried: ----------------//----------------- using namespace MCLib; DOM_Node Attribute; char *AttrValue; AttrValue = DOMStringToStdString( Attribute.getNodeValue() ); -----------------//------------- But I get this error message: ********* error C2679: binary '=' : no operator defined which takes a right-hand operand of type 'class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >' (or there is no acceptable conversion) ********* I would like to know what I'm doing wrong. Best regards. _______________________________________________________________________ �Ya conoces eBay, el mayor centro de compra y venta en internet? M�viles, port�tiles, pda�s, cd�s, c�maras digitales... �Compru�balo t� mismo! http://adfarm.mediaplex.com/ad/ck/1185-5550-4234-3?RedirectEnter&partner=34113&loc=http://www.es.ebay.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
