A
atapi103
I have documented programing errors in C++ useing xml document. So I
want a way to display this xml document but any xml parser I download
complains about "A name was started with an invalid character" This is
prob because xml doesnt like c++ and Im looking for a solution.
This is what the portion of my document looks like:
<note>
<error>
no match for 'operator<<' in 'std:perator<<(std::basic_ostream.....
</error>
<body>
You may have forgoten the braces when calling a class method such as
cout << myCat.Draw << endl;
is missing parenthisies myCat.Draw() fixes the probem.
</body>
</note>
want a way to display this xml document but any xml parser I download
complains about "A name was started with an invalid character" This is
prob because xml doesnt like c++ and Im looking for a solution.
This is what the portion of my document looks like:
<note>
<error>
no match for 'operator<<' in 'std:perator<<(std::basic_ostream.....
</error>
<body>
You may have forgoten the braces when calling a class method such as
cout << myCat.Draw << endl;
is missing parenthisies myCat.Draw() fixes the probem.
</body>
</note>