]> git.lyx.org Git - lyx.git/blob - src/support/tostr.h
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / tostr.h
1 // -*- C++ -*-
2 /**
3  * \file tostr.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * A collection of string helper functions that works with string.
12  * Some of these would certainly benefit from a rewrite/optimization.
13  */
14
15 #ifndef TOSTR_H
16 #define TOSTR_H
17
18 #include <string>
19
20 /// convert things to strings
21 std::string const tostr(bool b);
22 ///
23 std::string const tostr(int);
24 ///
25 std::string const tostr(unsigned int);
26 ///
27 std::string const tostr(long int);
28 ///
29 std::string const tostr(double);
30 ///
31 std::string const tostr(std::string const & s);
32 ///
33 std::string const tostr(long unsigned int);
34
35 #endif