Re: Maybee a stupid question about <vector.h>
Re: Maybee a stupid question about <vector.h>
- Subject: Re: Maybee a stupid question about <vector.h>
- From: GoochRules! <email@hidden>
- Date: Mon, 3 May 2004 08:40:17 -0600
Its just '#include <vector>'. In fact, drop the .h on ALL stl headers.
I'd be half-surprised to find out that '#include <string.h> actually
brings in std::string, rather than just the str* functions: I thought
all the stl headers had .h versions for 'backwards compatibility', but
it appears you don't have vector.h. So either it does not exist, or
its not in yor include path.
Anyways, #include <vector> and #include <string> (unless indeed you
reaaly did want str*() rather than std::string).
--mpeltzer
On May 3, 2004, at 8:23 AM, Tristan wrote:
Hi every xCoders,
I just installed xCode few time ago, and I can't build my framework,
wich use the standard vector class.
xCode sends me a build " vector.h : No such file or directory"" on
line " #include <vector.h> "
It works for <string.h>
What's the problem?
Thanks a lot!
moose
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.