2005-08-04 23:23:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef CPPUNIT_ESTRING_H
|
|
|
|
#define CPPUNIT_ESTRING_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
|
|
// Create a string from a const char pointer
|
|
|
|
inline std::string estring (const char *cstring)
|
|
|
|
{ return std::string (cstring); }
|
|
|
|
|
|
|
|
// Create a string from a string (for uniformities' sake)
|
|
|
|
inline std::string estring (std::string& expandedString)
|
|
|
|
{ return expandedString; }
|
|
|
|
|
|
|
|
// Create a string from an int
|
|
|
|
inline std::string estring (int number)
|
|
|
|
{ char buffer [50]; sprintf (buffer, "%d", number); return std::string (buffer); }
|
|
|
|
|
|
|
|
// Create a string from a long
|
|
|
|
inline std::string estring (long number)
|
|
|
|
{ char buffer [50]; sprintf (buffer, "%ld", number); return std::string (buffer); }
|
|
|
|
|
|
|
|
// Create a string from a double
|
|
|
|
inline std::string estring (double number)
|
2010-01-10 18:46:55 +01:00
|
|
|
{ char buffer [50]; sprintf (buffer, "%f", number); return std::string (buffer); }
|
2005-08-04 23:23:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|