/* * TextFile.h * * Created on: 13.02.2010 * Author: Zahl */ #ifndef TEXTFILE_H_ #define TEXTFILE_H_ #include #include class TextFile : public QTextStream { public: TextFile(QString filename); virtual ~TextFile(); bool good(); bool eof(); protected: QFile *_file; bool _good; }; #endif /* TEXTFILE_H_ */