Page MenuHomec4science

compute_arithmetic.hh
No OneTemporary

File Metadata

Created
Sat, Jun 1, 17:08

compute_arithmetic.hh

#ifndef COMPUTE_ARITHMETIC_HH
#define COMPUTE_ARITHMETIC_HH
#include "series.hh"
#include <iostream>
class compute_arithmetic: public Series
{
public:
double compute(unsigned int N);
compute_arithmetic()
{
std::cout<<"compute_arithmetic object constructed!"<<std::endl;
}
~compute_arithmetic()
{
std::cout<<"compute_arithmetic object destructed!"<<std::endl;
}
};
#endif

Event Timeline