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(..
[463 byte] By [Saeed] at [2007-11-20 11:58:59]
# 1 Re: Linkage problem
Did you implement the bool method(CString p1); in a .cpp file?
Arjay at 2007-11-11 4:01:44 >
# 2 Re: Linkage problem
Yes
i used a new class on class wizard and created a generic class
filled the method and that is it.
Saeed at 2007-11-11 4:02:55 >