]> git.lyx.org Git - lyx.git/blobdiff - src/support/tostr.h
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / tostr.h
index 34625c07248dd9f2e7235e24d6007b04cf586882..2e362d91999ab3957d23d8e91cf74f7f89df5c1b 100644 (file)
 #ifndef TOSTR_H
 #define TOSTR_H
 
-#include "support/std_string.h"
-
-// When trying to convert this to a template using std::stringstream,
-// note that this will pull in the whole of <string> in more than 150
-// files, even when configuring --with-included-strings !
+#include <string>
 
 /// convert things to strings
-string const tostr(bool b);
+std::string const tostr(bool b);
+///
+std::string const tostr(int);
 ///
-string const tostr(int);
+std::string const tostr(unsigned int);
 ///
-string const tostr(unsigned int);
+std::string const tostr(long int);
 ///
-string const tostr(long int);
+std::string const tostr(double);
 ///
-string const tostr(double);
+std::string const tostr(std::string const & s);
 ///
-string const tostr(string const & s);
+std::string const tostr(long unsigned int);
 
 #endif