Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Strings
Message
Information générale
Forum:
Visual C++
Catégorie:
Autre
Titre:
Divers
Thread ID:
00741045
Message ID:
00741321
Vues:
22
>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;
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform