views:

27

answers:

1
A: 

From what you state in your question it looks like your using the folder name 'xercesc' instead of 'xerces' in your include path.

try

#include <xerces/util/PlatformUtils.hpp>

The include directive will look in all of the directories in the include path and try to find the file specified. So if you specified a folder c:/something/include in your include path. it would search for c:/something/include/xercesc/util/PlatformUtils.hpp.

If your file can't be found then you need to check the include paths being used.

radman
Oh wow. I can't believe I missed that. I appreciate your keen observation of the details.
Sean Ochoa