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
2010-08-23 04:12:53