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
00038 #ifndef __vtkIOStreamFwd_h
00039 #define __vtkIOStreamFwd_h
00040
00041 #include "vtkConfigure.h"
00042
00043 #ifdef VTK_USE_ANSI_STDLIB
00044
00045
00046 # include <iosfwd>
00047 using std::ios;
00048 using std::streambuf;
00049 using std::istream;
00050 using std::ostream;
00051 using std::iostream;
00052 using std::filebuf;
00053 using std::ifstream;
00054 using std::ofstream;
00055 using std::fstream;
00056 #else
00057 # ifdef __BORLANDC__
00058 # include <iosfwd.h>
00059 # else
00060
00061
00062 class ios;
00063 class streambuf;
00064 class istream;
00065 class ostream;
00066 class iostream;
00067 class filebuf;
00068 class ifstream;
00069 class ofstream;
00070 class fstream;
00071 # endif
00072
00073 #endif
00074
00075
00076 #endif // __vtkIOStreamFwd_h