]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/print_bitset.tpp
testing new non-autotools build system
[chaz/yoink] / src / stlplus / strings / print_bitset.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 "string_bitset.hpp"
10
11 namespace stlplus
12 {
13
14 template<size_t N>
15 void print_bitset(std::ostream& device, const std::bitset<N>& data)
16 {
17 device << bitset_to_string(data);
18 }
19
20 } // end namespace stlplus
This page took 0.034861 seconds and 4 git commands to generate.