I have some difficulty to create two template instances from one template class, such as
class A: public CObject { };
class B: public CObject { };
CTypedPtrList <CObList, A*>;
CTypedPtrList <CObList, B*>
It looks to me that Rose can only maintain one such instance., either CTypedPtrList<CObList,A*> or CTypedPtrList<CObList,B*>.
Could anyone help me?
Thanks.
