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

7 lines
91 B
C++
Raw Permalink Normal View History

2024-03-08 14:01:18 +08:00
#include "my_math.h"
int my_math::GetSum(int a, int b) const
{
return a + b + m_nBase;
}