Install gcc-4.4.0-tdm-1-core-2.tar.gz
[msysgit.git] / mingw / lib / gcc / mingw32 / 4.3.3 / include / c++ / mingw32 / bits / basic_file.h
blobbf2d5b3162b1c7134339a2e9d32f8efbf55d2e31
1 // Wrapper of C-language FILE struct -*- C++ -*-
3 // Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
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 2, 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 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
32 // ISO C++ 14882: 27.8 File-based streams
35 /** @file basic_file.h
36 * This is an internal header file, included by other library headers.
37 * You should not attempt to use it directly.
40 #ifndef _GLIBCXX_BASIC_FILE_STDIO_H
41 #define _GLIBCXX_BASIC_FILE_STDIO_H 1
43 #pragma GCC system_header
45 #include <bits/c++config.h>
46 #include <bits/c++io.h> // for __c_lock and __c_file
47 #include <ios>
49 _GLIBCXX_BEGIN_NAMESPACE(std)
51 // Generic declaration.
52 template<typename _CharT>
53 class __basic_file;
55 // Specialization.
56 template<>
57 class __basic_file<char>
59 // Underlying data source/sink.
60 __c_file* _M_cfile;
62 // True iff we opened _M_cfile, and thus must close it ourselves.
63 bool _M_cfile_created;
65 public:
66 __basic_file(__c_lock* __lock = 0);
68 __basic_file*
69 open(const char* __name, ios_base::openmode __mode, int __prot = 0664);
71 __basic_file*
72 sys_open(__c_file* __file, ios_base::openmode);
74 __basic_file*
75 sys_open(int __fd, ios_base::openmode __mode);
77 __basic_file*
78 close();
80 bool
81 is_open() const;
83 int
84 fd();
86 __c_file*
87 file();
89 ~__basic_file();
91 streamsize
92 xsputn(const char* __s, streamsize __n);
94 streamsize
95 xsputn_2(const char* __s1, streamsize __n1,
96 const char* __s2, streamsize __n2);
98 streamsize
99 xsgetn(char* __s, streamsize __n);
101 streamoff
102 seekoff(streamoff __off, ios_base::seekdir __way);
104 int
105 sync();
107 streamsize
108 showmanyc();
111 _GLIBCXX_END_NAMESPACE
113 #endif