strings/print_basic.hpp

    1: #ifndef STLPLUS_PRINT_BASIC
    2: #define STLPLUS_PRINT_BASIC
    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: //   Utilities for converting printing basic C types
   11: 
   12: ////////////////////////////////////////////////////////////////////////////////
   13: 
   14: #include "print_address.hpp"
   15: #include "print_bool.hpp"
   16: #include "print_cstring.hpp"
   17: #include "print_float.hpp"
   18: #include "print_int.hpp"
   19: #include "print_pointer.hpp"
   20: 
   21: #endif