blob: 8242c9ec12eb0f582ecfe346a35156e9e1cbefb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef CPPUNIT_TOOLS_STRINGTOOLS_H
#define CPPUNIT_TOOLS_STRINGTOOLS_H
#include <cppunit/Portability.h>
#include <string>
namespace CppUnit
{
/*! \brief Tool functions to manipulate string.
*/
namespace StringTools
{
std::string CPPUNIT_API toString( int value );
std::string CPPUNIT_API toString( double value );
} // namespace StringTools
} // namespace CppUnit
#endif // CPPUNIT_TOOLS_STRINGTOOLS_H
|