gvsu/cs677/final/FatouComputation.h
josh 1fade8b250 added FatouComputation
git-svn-id: svn://anubis/gvsu@321 45c1a28c-8058-47b2-ae61-ca45b979098e
2008-12-07 22:18:36 +00:00

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