summaryrefslogtreecommitdiff
path: root/include/cppunit/tools/StringTools.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cppunit/tools/StringTools.h')
-rw-r--r--include/cppunit/tools/StringTools.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/cppunit/tools/StringTools.h b/include/cppunit/tools/StringTools.h
new file mode 100644
index 0000000..8242c9e
--- /dev/null
+++ b/include/cppunit/tools/StringTools.h
@@ -0,0 +1,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