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: 00019 ImageGenerator(FractalInfo * info, QObject * parent); 00020 virtual bool next(); 00021 virtual const Complex getPoint(); 00022 }; 00023 00024 #endif // IMAGEGENERATOR_H