]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/print_address.hpp
build system enhancements
[chaz/yoink] / src / stlplus / strings / print_address.hpp
1 #ifndef STLPLUS_PRINT_ADDRESS
2 #define STLPLUS_PRINT_ADDRESS
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 ////////////////////////////////////////////////////////////////////////////////
11 #include "strings_fixes.hpp"
12 #include "format_types.hpp"
13 #include <string>
14 #include <iostream>
15 #include <stdexcept>
16
17 namespace stlplus
18 {
19
20 ////////////////////////////////////////////////////////////////////////////////
21
22 void print_address(std::ostream& device,
23 const void*,
24 unsigned radix = 16,
25 radix_display_t display = radix_c_style_or_hash,
26 unsigned width = 0)
27 throw(std::invalid_argument);
28
29 ////////////////////////////////////////////////////////////////////////////////
30
31 } // end namespace stlplus
32
33 #endif
This page took 0.031539 seconds and 4 git commands to generate.