I have a Class , letz say CAppPath which has a Static method:
public:
static CString GetAppPath();
and then defining it in the CAppPath.cpp :
CString CAppPath::GetAppPath()
{
return "C:\..\MypAth";
}
Now I have another class CXMLHandler and I have included the CAppPath.h in it.But how do I call the GetAppPath() method, I am trying like below:
#include "CAppPath.h"
void CXMLHandler::MyMethod
{
CNDSClientDlg->GetAppPath();
}
but not getting this is the wrong way. How shoud I access he method. As that is static method , DO I need to create a object of class or do I need to make that class static itself?