xapian-core  1.4.25
str.h
Go to the documentation of this file.
1 
4 /* Copyright (C) 2009,2015 Olly Betts
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef XAPIAN_INCLUDED_STR_H
22 #define XAPIAN_INCLUDED_STR_H
23 
24 #include <string>
25 
26 namespace Xapian {
27 namespace Internal {
28 
30 std::string str(int value);
31 
33 std::string str(unsigned int value);
34 
36 std::string str(long value);
37 
39 std::string str(unsigned long value);
40 
42 std::string str(long long value);
43 
45 std::string str(unsigned long long value);
46 
48 std::string str(double value);
49 
51 std::string str(const void * value);
52 
58 inline std::string str(const std::string & value) { return value; }
59 
61 inline std::string str(const char * value) { return value; }
62 
64 inline std::string str(bool value) {
65  return std::string(1, '0' | static_cast<char>(value));
66 }
67 
68 }
69 }
70 
72 
73 #endif // XAPIAN_INCLUDED_STR_H
The Xapian namespace contains public interfaces for the Xapian library.
Definition: compactor.cc:80
string str(int value)
Convert int to std::string.
Definition: str.cc:90