2018-11-15 15:11:37 +02:00
|
|
|
#ifndef CALCULATOR_H
|
|
|
|
#define CALCULATOR_H
|
|
|
|
|
2018-11-15 15:07:05 +02:00
|
|
|
class Calculator
|
|
|
|
{
|
2018-11-15 15:21:34 +02:00
|
|
|
public:
|
|
|
|
int Add (double, double);
|
|
|
|
int Sub (double, double);
|
2018-11-15 15:07:05 +02:00
|
|
|
};
|
2018-11-15 15:11:37 +02:00
|
|
|
|
|
|
|
#endif//CALCULATOR_H
|