00001 #ifndef NMWR_GB_IOSTREAM_FORWARDDECL_H 00002 #define NMWR_GB_IOSTREAM_FORWARDDECL_H 00003 00004 00005 00006 // $LICENSE 00007 00008 00009 // forward declarations, these might change 00010 // if iostreams are implemented as templates! 00011 // this is also compiler-dependend 00012 00013 #include "compiler-config.h" 00014 00015 #ifndef __KCC 00016 class istream; 00017 class ostream; 00018 #else 00019 #include <iostream> 00020 USING_STD(ostream); 00021 USING_STD(istream); 00022 #endif 00023 00024 #endif