]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/print_vector.cpp
build system enhancements
[chaz/yoink] / src / stlplus / strings / print_vector.cpp
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_vector.hpp"
10 #include "string_vector.hpp"
11
12 namespace stlplus
13 {
14
15 ////////////////////////////////////////////////////////////////////////////////
16 // special case of vector<bool>
17
18 void print_bool_vector(std::ostream& device, const std::vector<bool>& values)
19 {
20 device << bool_vector_to_string(values);
21 }
22
23 ////////////////////////////////////////////////////////////////////////////////
24
25 } // end namespace stlplus
This page took 0.029941 seconds and 4 git commands to generate.