00001 #ifndef IMAGEGENERATOR_H 00002 #define IMAGEGENERATOR_H 00003 00004 #include "generator.h" 00005 00006 class ImageGenerator : public Generator 00007 { 00008 QPoint _current; 00009 Complex _point; 00010 00011 public: 00012 ImageGenerator(FractalInfo * info, QObject * parent); 00013 virtual bool next(); 00014 virtual const Complex getPoint(); 00015 }; 00016 00017 #endif // IMAGEGENERATOR_H