[VC++ Net] Comment mixer C++ standard/managé dans cet IDE ?
Bonjour,
Dans le cadre de mes �tudes, j'ai du reprendre un projet d�velopp� en c++ standard. Le probl�me est que je dois d�velopper avec Visual C++ .NET et toutes les gal�res que ca engendre :cry:
J'ai de gros probl�mes � mixer du code manag� avec du code non manag�.
Dans mon .h, j'ai :
Citation:
///Lit une ligne d'information dans le fichier
bool LireUnite(bool ouverture, gcroot<System::Xml::XmlNodeType*> typ, string nomNoeud, string attrib, string valNoeud);
Etje n'arrive pas impl�menter le .cpp :
Citation:
bool CLecteurGedml::LireUnite(bool ouverture, XmlNodeType* typ, string nomNoeud, string attrib, string valNoeud){
me rend comme erreur :
Citation:
error C2511: 'bool CLecteurGedml::LireUnite(bool,System::Xml::XmlNodeType __gc *,std::string,std::string,std::string)'*: impossible de trouver la fonction membre surcharg�e dans 'CLecteurGedml'
Comment passer un param�tre manag� dans une fonction non manag�e ???
Merci d'avance.