Common/vtkIOStream.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 __vtkIOStream_h
00038 #define __vtkIOStream_h
00039
00040 #include "vtkConfigure.h"
00041
00042 #ifdef VTK_USE_ANSI_STDLIB
00043
00044 #ifdef _MSC_VER
00045 #pragma warning (push, 3)
00046 #endif
00047
00048 # include <iostream>
00049 # include <strstream>
00050 # include <fstream>
00051 # include <iomanip>
00052
00053
00054
00055 using std::dec;
00056 using std::hex;
00057 using std::setw;
00058 using std::setfill;
00059 using std::setprecision;
00060 using std::cerr;
00061 using std::cout;
00062 using std::cin;
00063 using std::ios;
00064 using std::endl;
00065 using std::ends;
00066 using std::ostream;
00067 using std::istream;
00068 using std::ostrstream;
00069 using std::istrstream;
00070 using std::strstream;
00071 using std::ofstream;
00072 using std::ifstream;
00073 using std::fstream;
00074
00075 #ifdef _MSC_VER
00076 #pragma warning(pop)
00077 #endif
00078
00079 #else
00080
00081
00082 # ifdef _WIN32_WCE
00083 # include "vtkWinCE.h"
00084 # else
00085 # include <iostream.h>
00086 # if defined(_MSC_VER)
00087 # include <strstrea.h>
00088 # else
00089 # include <strstream.h>
00090 # endif
00091 # include <fstream.h>
00092 # endif
00093 #endif
00094
00095 #endif // __vtkIOStream_h