12 lines
147 B
C++
12 lines
147 B
C++
#ifndef ARITHMETIC_H_
|
|
#define ARITHMETIC_H_
|
|
|
|
class Arithmetic {
|
|
public:
|
|
Arithmetic() = default;
|
|
|
|
int add(const int, const int);
|
|
};
|
|
|
|
#endif
|