strings/string_basic.hpp
1: #ifndef STLPLUS_STRING_BASIC
2: #define STLPLUS_STRING_BASIC
3: ////////////////////////////////////////////////////////////////////////////////
4:
5: // Author: Andy Rushton
6: // Copyright: (c) Andy Rushton, 2007
7: // License: BSD License, see ../docs/license.html
8:
9: // Utilities for converting basic C types to/from std::strings
10:
11: ////////////////////////////////////////////////////////////////////////////////
12:
13: #include "string_bool.hpp"
14: #include "string_int.hpp"
15: #include "string_address.hpp"
16: #include "string_float.hpp"
17: #include "string_cstring.hpp"
18: #include "string_pointer.hpp"
19:
20: #endif