FromString/ToString for strings (no-op)

This commit is contained in:
Glenn Maynard
2005-02-20 02:55:31 +00:00
parent 3c45bca547
commit 3c49514422
+2 -1
View File
@@ -379,12 +379,13 @@ bool FromString( const CString &sValue, int &out );
bool FromString( const CString &sValue, unsigned &out );
bool FromString( const CString &sValue, float &out );
bool FromString( const CString &sValue, bool &out );
bool FromString( const CString &sValue, CString &out ) { out = sValue; return true; }
CString ToString( int value );
CString ToString( unsigned value );
CString ToString( float value );
CString ToString( bool value );
CString ToString( const CString &value ) { return value; }
// helper file functions used by Bookkeeper and ProfileManager
//