// // ParseOption.h // #ifndef _PARSEOPTION_H #define _PARSEOPTION_H #include #include class ParseOption { public : ParseOption (ifstream&); int nextKey (char*, char*); private : ifstream& _in; char _buffer[200]; }; #endif _PARSEOPTION_H