sys-prog-coursework-lab-1/calculator.h

12 lines
155 B
C++

#ifndef CALCULATOR_H
#define CALCULATOR_H
class Calculator
{
public:
int Add (int, int);
int Sub (int, int);
};
#endif//CALCULATOR_H