00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef FSTREAM_IMPL_H
00020 # define FSTREAM_IMPL_H
00021
00022 #include <stl/_stdio_file.h>
00023
00024 # ifdef _STLP_HAS_NO_NAMESPACES
00025 # define __SGI_BEGIN_NAMESPACE
00026 # define __SGI_END_NAMESPACE
00027 # define _SgI
00028 # else
00029 # define __SGI_BEGIN_NAMESPACE namespace _SgI {
00030 # define __SGI_END_NAMESPACE }
00031 # endif
00032
00033 __SGI_BEGIN_NAMESPACE
00034
00035 # ifndef _STLP_HAS_NO_NAMESPACES
00036 using _STLP_STD::streamoff;
00037 using _STLP_STD::ios_base;
00038 using _STLP_STD::streamsize;
00039 using _STLP_STD::streamoff;
00040 using _STLP_STD::char_traits;
00041 # ifndef _STLP_USE_UNIX_IO
00042 using _STLP_VENDOR_CSTD::FILE;
00043 using _STLP_VENDOR_CSTD::ftell;
00044 # endif
00045
00046 using _STLP_STD::_FILE_fd;
00047 # endif
00048
00049 extern bool __is_regular_file(_STLP_fd fd);
00050 extern streamoff __file_size(_STLP_fd fd);
00051
00052 __SGI_END_NAMESPACE
00053
00054 #endif