|
-
May 24th, 1999, 01:59 AM
#1
CArray
Hai gurus
Can i derive a class from CArray?
I tried but some problems are coming while compiling. i think it is because of CArray is a template class, right?
if that is the problem how can i derive a child class from CArray?
Thankx And Regards....
Rajan
-
May 27th, 1999, 04:26 AM
#2
Re: CArray
When you cannot derive from it you can contain CArray as a member of your new class.
-
May 27th, 1999, 06:54 AM
#3
Re: CArray
class CArrayInteger : class CArray<int, &int>
{
public:
CArrayInteger();
~CArrayInteger();
};
Doesn't this work?
Sally
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
|