#ifndef FATOUCOMPUTATION_H #define FATOUCOMPUTATION_H FATOUCOMPUTATION_H #include "Computation.h" class FatouComputation : public Computation { public: unsigned int compute(double x, double y); }; #endif