Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Strings
Message
General information
Forum:
Visual C++
Category:
Other
Title:
Miscellaneous
Thread ID:
00741045
Message ID:
00741321
Views:
21
>I am having trouble using the the header file and
>cannot get it to let me do stuff like
>
>string MyString;
>
>How exactly should this be done? Right now I have the
>#include in my main project. Thanks.

If you going to use STL strings then you need to add
#include <string>
using namespace std;
You can also qualify namespace explicitly:
#include <string>
std::string MyString;
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform