fileformat/PictureGenerators/PictureGenerator.h
Go to the documentation of this file.
00001 #ifndef PICTUREGENERATOR_H
00002 #define PICTUREGENERATOR_H PICTUREGENERATOR_H
00003 
00004 #include <QtCore/QCoreApplication>
00005 #include <QtCore/QString>
00006 #include <QtCore/QTextStream>
00007 
00008 
00009 class PictureGenerator {
00010 public: 
00012         virtual QString toString() const;
00013         
00015         virtual void reset();
00016 
00017 protected:
00018         PictureGenerator();
00019         QString collected;
00020         QTextStream collector;
00021         bool finished;
00022 };
00023 #endif