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