]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/print_vector.tpp
build system enhancements
[chaz/yoink] / src / stlplus / strings / print_vector.tpp
1 ////////////////////////////////////////////////////////////////////////////////
2
3 // Author: Andy Rushton
4 // Copyright: (c) Southampton University 1999-2004
5 // (c) Andy Rushton 2004-2009
6 // License: BSD License, see ../docs/license.html
7
8 ////////////////////////////////////////////////////////////////////////////////
9 #include "print_sequence.hpp"
10
11 namespace stlplus
12 {
13
14 template<typename T, typename S>
15 void print_vector(std::ostream& device, const std::vector<T>& values,
16 S print_fn,
17 const std::string& separator)
18 {
19 print_sequence(device, values.begin(), values.end(), print_fn, separator);
20 }
21
22 } // end namespace stlplus
This page took 0.030241 seconds and 4 git commands to generate.