basic_file.h

Go to the documentation of this file.
00001 // Wrapper of C-language FILE struct -*- C++ -*- 00002 00003 // Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. 00004 // 00005 // This file is part of the GNU ISO C++ Library. This library is free 00006 // software; you can redistribute it and/or modify it under the 00007 // terms of the GNU General Public License as published by the 00008 // Free Software Foundation; either version 2, or (at your option) 00009 // any later version. 00010 00011 // This library is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU General Public License for more details. 00015 00016 // You should have received a copy of the GNU General Public License along 00017 // with this library; see the file COPYING. If not, write to the Free 00018 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, 00019 // USA. 00020 00021 // As a special exception, you may use this file as part of a free software 00022 // library without restriction. Specifically, if other files instantiate 00023 // templates or use macros or inline functions from this file, or you compile 00024 // this file and link it with other files to produce an executable, this 00025 // file does not by itself cause the resulting executable to be covered by 00026 // the GNU General Public License. This exception does not however 00027 // invalidate any other reasons why the executable file might be covered by 00028 // the GNU General Public License. 00029 00030 // 00031 // ISO C++ 14882: 27.8 File-based streams 00032 // 00033 00034 /** @file basic_file.h 00035 * This is an internal header file, included by other library headers. 00036 * You should not attempt to use it directly. 00037 */ 00038 00039 #ifndef _BASIC_FILE_STDIO_H 00040 #define _BASIC_FILE_STDIO_H 1 00041 00042 #pragma GCC system_header 00043 00044 #include <bits/c++config.h> 00045 #include <ios> 00046 00047 namespace std 00048 { 00049 // Generic declaration. 00050 template<typename _CharT> 00051 class __basic_file; 00052 00053 // Specialization. 00054 template<> 00055 class __basic_file<char> 00056 { 00057 // Underlying data source/sink. 00058 __c_file* _M_cfile; 00059 00060 // True iff we opened _M_cfile, and thus must close it ourselves. 00061 bool _M_cfile_created; 00062 00063 public: 00064 __basic_file(__c_lock* __lock = 0); 00065 00066 __basic_file* 00067 open(const char* __name, ios_base::openmode __mode, int __prot = 0664); 00068 00069 __basic_file* 00070 sys_open(__c_file* __file, ios_base::openmode); 00071 00072 __basic_file* 00073 sys_open(int __fd, ios_base::openmode __mode); 00074 00075 __basic_file* 00076 close(); 00077 00078 bool 00079 is_open() const; 00080 00081 int 00082 fd(); 00083 00084 __c_file* 00085 file(); 00086 00087 ~__basic_file(); 00088 00089 streamsize 00090 xsputn(const char* __s, streamsize __n); 00091 00092 streamsize 00093 xsputn_2(const char* __s1, streamsize __n1, 00094 const char* __s2, streamsize __n2); 00095 00096 streamsize 00097 xsgetn(char* __s, streamsize __n); 00098 00099 streamoff 00100 seekoff(streamoff __off, ios_base::seekdir __way); 00101 00102 int 00103 sync(); 00104 00105 streamsize 00106 showmanyc(); 00107 }; 00108 } // namespace std 00109 00110 #endif

Generated on Wed Jun 9 11:18:11 2004 for libstdc++-v3 Source by doxygen 1.3.7