Re: CObject
Oops, looks like you are trying to initialize a private member of CObject.
Are you trying to access a private member of CObject in your initialization
list?
AliR.
"AliR (VC++ MVP)" <AliR@online.nospam> wrote in message
news:THBDj.897$p24.426@nlpi061.nbdc.sbc.com...
What does your constructor look like?
Are you calling the CObject's copy constructor by any chance?
from CObject class:
// Disable the copy constructor and assignment by default so you will get
// compiler errors instead of unexpected behaviour if you pass objects
// by value or assign objects.
protected:
CObject();
private:
CObject(const CObject& objectSrc); // no implementation
void operator=(const CObject& objectSrc); // no implementation
AliR.
"Al" <Al@discussions.microsoft.com> wrote in message
news:AA7FC14D-D290-4ABD-AA78-A1682DA6BFB7@microsoft.com...
This is one of those.
I have a class derived from CObject which has a default constructor. When
I
try to add another constructor to assign values to its members I get an
error.
error C2248: 'CObject::CObject' : cannot acess private member delcaration
in
class 'CObject'
My constructor is public:
This is probably first symester stuff again but please help me out here.
Thanks!
--
Just Al