00001 //----------------------------------------------------------------------------- 00002 //mystreams.h 00003 //----------------------------------------------------------------------------- 00004 00005 #ifndef _MYSTREAMS_H_ 00006 #define _MYSTREAMS_H_ 00007 00008 #include <iostream> 00009 00010 using std::endl ; 00011 using std::ostream ; 00012 using std::istream ; 00013 00014 //ostream& operator<<( ostream& os, char chars[] ) ; 00015 void eatwhite( istream& is ) ; 00016 void eatUntilClosing( istream& is, char opening = '{', char closing = '}' ) ; 00017 00018 #endif