How to separate interface and implementation when refering to a constant function
This is a discussion on How to separate interface and implementation when refering to a constant function within the C++ Programming forums, part of the General Programming Boards category; //----[some header file]
class g_cSomeClass
{
public:
g_cSomeClass(const g_cSomeClass & p_scSomeClass);
~g_cSomeClass();
void GetSomething();
};
//----[some cpp file]------------------
inline g_cSomeClass::g_cSomeClass(const ...