]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/string_string.hpp
build system enhancements
[chaz/yoink] / src / stlplus / strings / string_string.hpp
1 #ifndef STLPLUS_STRING_STRING
2 #define STLPLUS_STRING_STRING
3 ////////////////////////////////////////////////////////////////////////////////
4
5 // Author: Andy Rushton
6 // Copyright: (c) Southampton University 1999-2004
7 // (c) Andy Rushton 2004-2009
8 // License: BSD License, see ../docs/license.html
9
10 // Functions for converting C/STL strings to string
11
12 // This is necessary for completeness, e.g. for use in vector_to_string for vector<string>
13
14 ////////////////////////////////////////////////////////////////////////////////
15 #include "strings_fixes.hpp"
16 #include <string>
17 #include <stdexcept>
18
19 namespace stlplus
20 {
21
22 std::string string_to_string(const std::string& value);
23
24 }
25
26 #endif
This page took 0.030913 seconds and 4 git commands to generate.