Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members Related Pages
Common/vtkIOStreamFwd.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00037 #ifndef __vtkIOStreamFwd_h
00038 #define __vtkIOStreamFwd_h
00039
00040 #include "vtkConfigure.h"
00041
00042 #ifdef VTK_USE_ANSI_STDLIB
00043
00044
00045 # include <iosfwd>
00046 using std::ios;
00047 using std::streambuf;
00048 using std::istream;
00049 using std::ostream;
00050 using std::iostream;
00051 using std::filebuf;
00052 using std::ifstream;
00053 using std::ofstream;
00054 using std::fstream;
00055 #else
00056 # ifdef __BORLANDC__
00057 # include <iosfwd.h>
00058 # else
00059
00060
00061 class ios;
00062 class streambuf;
00063 class istream;
00064 class ostream;
00065 class iostream;
00066 class filebuf;
00067 class ifstream;
00068 class ofstream;
00069 class fstream;
00070 # endif
00071
00072 #endif
00073
00074
00075 #endif // __vtkIOStreamFwd_h