how-to-use/cpp/export_c/my_math.cpp

7 lines
91 B
C++

#include "my_math.h"
int my_math::GetSum(int a, int b) const
{
return a + b + m_nBase;
}