In libobjc/: 2011-06-02 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git] / libstdc++-v3 / config / io / basic_file_stdio.h
blobf543a8976d7c63a1aee2e8c543e8c79253d5fc6b
1 // Wrapper of C-language FILE struct -*- C++ -*-
3 // Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 // <http://www.gnu.org/licenses/>.
27 // ISO C++ 14882: 27.8 File-based streams
30 /** @file bits/basic_file.h
31 * This is an internal header file, included by other library headers.
32 * Do not attempt to use it directly. @headername{ios}
35 #ifndef _GLIBCXX_BASIC_FILE_STDIO_H
36 #define _GLIBCXX_BASIC_FILE_STDIO_H 1
38 #pragma GCC system_header
40 #include <bits/c++config.h>
41 #include <bits/c++io.h> // for __c_lock and __c_file
42 #include <ios>
44 namespace std _GLIBCXX_VISIBILITY(default)
46 _GLIBCXX_BEGIN_NAMESPACE_VERSION
48 // Generic declaration.
49 template<typename _CharT>
50 class __basic_file;
52 // Specialization.
53 template<>
54 class __basic_file<char>
56 // Underlying data source/sink.
57 __c_file* _M_cfile;
59 // True iff we opened _M_cfile, and thus must close it ourselves.
60 bool _M_cfile_created;
62 public:
63 __basic_file(__c_lock* __lock = 0) throw ();
65 __basic_file*
66 open(const char* __name, ios_base::openmode __mode, int __prot = 0664);
68 __basic_file*
69 sys_open(__c_file* __file, ios_base::openmode);
71 __basic_file*
72 sys_open(int __fd, ios_base::openmode __mode) throw ();
74 __basic_file*
75 close();
77 _GLIBCXX_PURE bool
78 is_open() const throw ();
80 _GLIBCXX_PURE int
81 fd() throw ();
83 _GLIBCXX_PURE __c_file*
84 file() throw ();
86 ~__basic_file();
88 streamsize
89 xsputn(const char* __s, streamsize __n);
91 streamsize
92 xsputn_2(const char* __s1, streamsize __n1,
93 const char* __s2, streamsize __n2);
95 streamsize
96 xsgetn(char* __s, streamsize __n);
98 streamoff
99 seekoff(streamoff __off, ios_base::seekdir __way) throw ();
101 int
102 sync();
104 streamsize
105 showmanyc();
108 _GLIBCXX_END_NAMESPACE_VERSION
109 } // namespace
111 #endif