BUG: ClassView Cannot Add Member Functions To Template ClassesID: Q192629
|
The following error occurs when trying to add member functions to template classes using ClassView:
Unable to create the implementation of this function
To add member functions to a template class, you must manually enter the functions into the source files.
Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.
//generic class declaration:
template <class c> class CMyGenericClass {
public:
CMyGenericClass();
virtual ~CMyGenericClass();
};
//constructor and destructor definitions:
template <class c> CMyGenericClass<c>::CMyGenericClass()
{
}
template <class c> CMyGenericClass<c>::~CMyGenericClass()
{
}
Unable to create the implementation of this function
Q154112 ClassView Cannot Find Template Member Function Definition
Additional query words: kbDSupport
Keywords : kbClassView kbide kbVC500 kbVC500bug kbVC600 kbVC600bug kbGrpDSTools
Version : WINNT:5.0,6.0
Platform : winnt
Issue type : kbbug
Last Reviewed: August 8, 1999