embedXcode and C++ standard library

Hi,

i want to develop software on my mac using Xcode and i came across embedXcode. It works great as long as I don't use any standard libraries (string, vector etc.). When I try to use strings from the standard library, I get a compiler error at the line "#include " with the message "String: no such file or directory".

regards
Jay

#include <string>

Should that be

#include <string.h>

or even

#include <String.h>

Thanks for the answer.

But string.h is a C header file and I want to use the C++ library (string class). On windows i use VisualMicro and it works perfectly, so I think that I need to let the compiler know about the libraries somehow. For now it knows C libraries only.