]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/string_foursome.hpp
testing new non-autotools build system
[chaz/yoink] / src / stlplus / strings / string_foursome.hpp
1 #ifndef STLPLUS_STRING_FOURSOME
2 #define STLPLUS_STRING_FOURSOME
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 // Generate a string representation of a foursome
11
12 ////////////////////////////////////////////////////////////////////////////////
13 #include "strings_fixes.hpp"
14 #include "foursome.hpp"
15 #include <string>
16
17 ////////////////////////////////////////////////////////////////////////////////
18
19 namespace stlplus
20 {
21
22 template<typename T1, typename T2, typename T3, typename T4, typename S1, typename S2, typename S3, typename S4>
23 std::string foursome_to_string(const foursome<T1,T2,T3,T4>& values,
24 S1 to_string_fn1,
25 S2 to_string_fn2,
26 S3 to_string_fn3,
27 S4 to_string_fn4,
28 const std::string& separator = ":");
29
30 } // end namespace stlplus
31
32 #include "string_foursome.tpp"
33 #endif
This page took 0.029525 seconds and 4 git commands to generate.