]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/string_matrix.hpp
cleanup stlplus files
[chaz/yoink] / src / stlplus / strings / string_matrix.hpp
1 #ifndef STLPLUS_STRING_MATRIX
2 #define STLPLUS_STRING_MATRIX
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 matrix
11
12 ////////////////////////////////////////////////////////////////////////////////
13 #include "strings_fixes.hpp"
14 #include "matrix.hpp"
15 #include <string>
16
17 ////////////////////////////////////////////////////////////////////////////////
18
19 namespace stlplus
20 {
21
22 template<typename T, typename S>
23 std::string matrix_to_string(const matrix<T>& values,
24 S to_string_fn,
25 const std::string& column_separator = "|",
26 const std::string& row_separator = ",");
27
28 } // end namespace stlplus
29
30 #include "string_matrix.tpp"
31 #endif
This page took 0.029131 seconds and 4 git commands to generate.