14 lines
220 B
C++
14 lines
220 B
C++
|
|
#ifndef FATOUCOMPUTATION_H
|
|
#define FATOUCOMPUTATION_H FATOUCOMPUTATION_H
|
|
|
|
#include "Computation.h"
|
|
|
|
class FatouComputation : public Computation
|
|
{
|
|
public:
|
|
unsigned int compute(double x, double y);
|
|
};
|
|
|
|
#endif
|