Include : modifiche per eliminazione nome e introduzione Id di oggetti.

This commit is contained in:
Dario Sassi
2013-11-28 07:47:28 +00:00
parent b0496d7bae
commit 2ca8ca2b20
2 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ FromString( const std::string& sVal, double& dVal)
pStart = sVal.c_str() ;
dVal = strtod( pStart, &pStop) ;
return ( pStop != pStart && *pStop == '\0' && errno == 0) ; }
const std::string EGN_EXPORT ToString( int nVal, int nPrec = 1) ;
EGN_EXPORT const std::string ToString( int nVal, int nPrec = 1) ;
inline const std::string
ToString( bool bVal)
{ return std::string( ( bVal ? "1" : "0")) ; }