00001 /* -*- c++ -*- */ 00002 #ifndef AKAXISO2_UTIL_IOSFWD_H__ 00003 #define AKAXISO2_UTIL_IOSFWD_H__ 00004 00010 #include <akaxiso2/configuration.h> 00011 #include <iosfwd> 00012 00013 #ifdef MISSING_SSTREAM_IN_IOSFWD // for g++2.96 00014 #include <akaxiso2/util/sstream.h> 00015 #endif 00016 00035 #ifdef AKAXISO2_USE_ISTRSTREAM //for g++2.95 00036 namespace aka2 { 00037 class isstream; 00038 } 00039 #else 00040 namespace aka2 { 00041 typedef std::istringstream isstream; 00042 } 00043 #endif 00044 00045 #endif