gvsu/cs677/final/NewtonComputation.h
josh c1b75ab6a0 skeleton NewtonComputation added, more base logic present
git-svn-id: svn://anubis/gvsu@319 45c1a28c-8058-47b2-ae61-ca45b979098e
2008-12-06 21:54:19 +00:00

14 lines
224 B
C++

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