gvsu/cs677/final/Computation.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

13 lines
166 B
C++

#ifndef COMPUTATION_H
#define COMPUTATION_H COMPUTATION_H
class Computation
{
private:
public:
virtual unsigned int compute(double x, double y) = 0;
};
#endif