Hi
I have a class
Class MM{
public:
SetInterfacePtr( IsomeInterfacePointer *y)
{
xx = y;// crashing place
};
private:
IADFsomeInterfacePointer *xx;
};
When i have an object variable of type class MM
and call its SetInterfacePtr function it is crashing...
I checked for the content it is not NULL.
What might be the problem?
Can we assign an Interface pointer to another?
S.Senthil Kumar
I have a class
Class MM{
public:
SetInterfacePtr( IsomeInterfacePointer *y)
{
xx = y;// crashing place
};
private:
IADFsomeInterfacePointer *xx;
};
When i have an object variable of type class MM
and call its SetInterfacePtr function it is crashing...
I checked for the content it is not NULL.
What might be the problem?
Can we assign an Interface pointer to another?
S.Senthil Kumar