Common/vtkIOStream.h
Go to the documentation of this file.00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00022 #ifndef __vtkIOStream_h
00023 #define __vtkIOStream_h
00024 
00025 #include "vtkConfigure.h"
00026 
00027 #ifdef VTK_USE_ANSI_STDLIB
00028 
00029 #ifdef _MSC_VER
00030 #pragma warning (push, 3)
00031 #endif
00032 
00033 # include <iostream>  
00034 # include <strstream> 
00035 # include <fstream>   
00036 # include <iomanip>   
00037 
00038 
00039 
00040 using std::dec;
00041 using std::hex;
00042 using std::setw;
00043 using std::setfill;
00044 using std::setprecision;
00045 using std::cerr;
00046 using std::cout;
00047 using std::cin;
00048 using std::ios;
00049 using std::endl;
00050 using std::ends;
00051 using std::ostream;
00052 using std::istream;
00053 using std::ostrstream;
00054 using std::istrstream;
00055 using std::strstream;
00056 using std::ofstream;
00057 using std::ifstream;
00058 using std::fstream;
00059 
00060 #ifdef _MSC_VER
00061 #pragma warning(pop)
00062 #endif
00063 
00064 #else
00065 
00066 
00067 # ifdef _WIN32_WCE
00068 #  include "vtkWinCE.h"   
00069 # else
00070 #  include <iostream.h>   
00071 #  include <iomanip.h>
00072 #  if defined(_MSC_VER)
00073 #   include <strstrea.h>  
00074 #  else
00075 #   include <strstream.h> 
00076 #  endif
00077 #  include <fstream.h>    
00078 # endif
00079 #endif
00080 
00081 #endif // __vtkIOStream_h