Chris Kostakis wrote:
> Hi I am relatively new to linux programming so bear with my stupidity.
>
> When I try to include the library:
> #include <libxml++/libxml++.h>
>
> I get an error that the file cannot be found.
You need to supply location as to where libxml++ is located to the
compiler. It would be something like this:
g++ -I/usr/include/libxml++-2.6/ <other compiler options>
How exactly will you do this depens what development tools are you
using, IDE, automake etc.
Darko
|