dalla mia lib in firma(C++ Utils)
/**
Name:to_string
Return: the string
Argoments: type to convert\n
Description: Convert a type into a string
*/
template <typename T>
string to_string(const T& x)
{
std:stringstream os;
os << x;
return os.str();
}
dalla mia lib in firma(C++ Utils)
/**
Name:to_string
Return: the string
Argoments: type to convert\n
Description: Convert a type into a string
*/
template <typename T>
string to_string(const T& x)
{
std:stringstream os;
os << x;
return os.str();
}
La stupidità umana e l'universo sono infinite.
Della seconda non sono certo(Einstein)
Gnu/Linux User