#pragma once class my_math { private: int m_nBase {6}; public: my_math() = default; ~my_math() = default; public: int GetSum(int a, int b) const; };