7 lines
91 B
C++
7 lines
91 B
C++
#include "my_math.h"
|
|
|
|
int my_math::GetSum(int a, int b) const
|
|
{
|
|
return a + b + m_nBase;
|
|
}
|