Linkage problem
Ok created a generic class with only one method apart from the const and destructor.
In another class used it by
#include "HSMSV.h"
...
HSMSV c;
c.method("");
class HSMSV
{
public:
HSMSV();
virtual ~HSMSV();
bool method(CString p1);
};
why is it coming up with
error LNK2001: unresolved external symbol "public: bool __thiscall bool __thiscall HSMSV::method(..

