14 lines
224 B
C++
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
|