|
-
Feb 9th, 2003, 10:11 AM
#1
Thread Starter
Member
Template problem
class CAnyBaseClass
{
public:
CAnyBaseClass();
~CAnyBaseClass();
};
// Definitions ...
template<class BASE>
class CMyClass : public BASE
{
public:
CMyClass();
~CMyClass();
};
// Definitions etc...
...
CMyClass<CAnyBaseClass>* pMyClass = new CMyClass<CAnyBaseClass>;
causes LNK2019 linker error.
I don`t know what to do!
Please, help !
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|