diff options
Diffstat (limited to 'libstdc++-v3/include/std/ios')
-rw-r--r-- | libstdc++-v3/include/std/ios | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/libstdc++-v3/include/std/ios b/libstdc++-v3/include/std/ios index a017dd8..1e61c36 100644 --- a/libstdc++-v3/include/std/ios +++ b/libstdc++-v3/include/std/ios @@ -1,6 +1,6 @@ -// -*- C++ -*- std header. +// Iostreams base classes -*- C++ -*- -// Copyright (C) 2001 Free Software Foundation, Inc. +// Copyright (C) 1997, 1998, 1999, 2001 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -27,11 +27,28 @@ // invalidate any other reasons why the executable file might be covered by // the GNU General Public License. -/** @file ios - * This is a Standard C++ Library file. You should @c #include this file - * in your programs, rather than any of the "st[dl]_*.h" implementation files. +// +// ISO C++ 14882: 27.4 Iostreams base classes +// + +/** @file std_ios.h + * This is an internal header file, included by other library headers. + * You should not attempt to use it directly. */ #ifndef _CPP_IOS -#include <bits/std_ios.h> -#endif +#define _CPP_IOS 1 + +#pragma GCC system_header + +#include <iosfwd> +#include <exception> // For ios_base::failure +#include <bits/char_traits.h> // For char_traits, streamoff, streamsize, fpos +#include <cstdio> // For SEEK_SET, SEEK_CUR, SEEK_END +#include <bits/localefwd.h> // For class locale +#include <bits/ios_base.h> // For ios_base declarations. +#include <streambuf> +#include <bits/basic_ios.h> + +#endif /* _CPP_IOS */ + |