]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/print_string.hpp
testing new non-autotools build system
[chaz/yoink] / src / stlplus / strings / print_string.hpp
1 #ifndef STLPLUS_PRINT_STRING
2 #define STLPLUS_PRINT_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 print_vector for vector<string>
13
14 ////////////////////////////////////////////////////////////////////////////////
15 #include "strings_fixes.hpp"
16 #include <string>
17 #include <iostream>
18 #include <stdexcept>
19
20 namespace stlplus
21 {
22
23 void print_string(std::ostream& device, const std::string& value);
24 }
25
26 #endif
This page took 0.030003 seconds and 4 git commands to generate.