strings/strings.hpp

    1: #ifndef STLPLUS_STRINGS
    2: #define STLPLUS_STRINGS
    3: ////////////////////////////////////////////////////////////////////////////////
    4: 
    5: //   Author:    Andy Rushton
    6: //   Copyright: (c) Andy Rushton, 2007
    7: //   License:   BSD License, see ../docs/license.html
    8: 
    9: //   Header for including the whole strings library in one go
   10: 
   11: //   The strings library prints C and C++ types into a std::string
   12: 
   13: //   - it extends the numeric presentation of integers to include any radix from 2 - 36
   14: //   - it allows the printing of data structures - useful for diagnostic dumps
   15: 
   16: ////////////////////////////////////////////////////////////////////////////////
   17: 
   18: #include "string_utilities.hpp"
   19: 
   20: #include "string_basic.hpp"
   21: #include "string_stl.hpp"
   22: #include "string_stlplus.hpp"
   23: 
   24: #include "print_basic.hpp"
   25: #include "print_stl.hpp"
   26: #include "print_stlplus.hpp"
   27: 
   28: ////////////////////////////////////////////////////////////////////////////////
   29: #endif