00001 #ifndef IMAGEGENERATOR_H 00002 #define IMAGEGENERATOR_H 00003 00004 #include "generator.h" 00005 00013 class ImageGenerator : public Generator 00014 { 00015 QPoint _current; 00016 Complex _point; 00017 00018 public: 00020 ImageGenerator(FractalInfo * info, QObject * parent); 00022 virtual bool next(); 00024 virtual const Complex getPoint(); 00025 }; 00026 00027 #endif // IMAGEGENERATOR_H