]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/print_bitset.hpp
build system enhancements
[chaz/yoink] / src / stlplus / strings / print_bitset.hpp
1 #ifndef STLPLUS_PRINT_BITSET
2 #define STLPLUS_PRINT_BITSET
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 bitset
11
12 ////////////////////////////////////////////////////////////////////////////////
13 #include "strings_fixes.hpp"
14 #include <bitset>
15 #include <string>
16 #include <iostream>
17
18 namespace stlplus
19 {
20
21 template<size_t N>
22 void print_bitset(std::ostream& device, const std::bitset<N>& data);
23
24 } // end namespace stlplus
25
26 #include "print_bitset.tpp"
27 #endif
This page took 0.030063 seconds and 4 git commands to generate.