BF_IntToString : convertion d'un entier en chaine de caractère
Prototype :
string BF_IntToString (
const long iLong);
iLong
Entier à convertir.
Valeur de retour
Chaine de caractère (string).
Divers
Cette fonction utilise les stringstream pour la convertion.
Exemples
std::string sMaChaine = BF_IntToString (123);
std::string sMaChaine = BF_IntToString (iMonEntier / 2);