I can't understand this error, really. Please help me with it. The code is :

m_pIServer = new IDeviceServer(this);

and declarations is :

class IDeviceServer : public IOPCServer
{
  public:
    IDeviceServer( LPUNKNOWN );
  ...

IDeviceServer       *m_pIServer;

What means : a value of type "IDeviceServer *" cannot be assigned to an entity of type "IDeviceServer *" ? I can't understand it.

link|improve this question

I'm going to suspect the root cause of the error is somewhat related to m_pIServer. That's a member of IDeviceServer but it also has type IDeviceServer* ?! – MSalters Aug 22 '11 at 12:45
No, no, m_pIServer is member of DeviceServer, and IDeviceServer is friend of DeviceServer.Sorry for confusion. – Sholy Aug 22 '11 at 13:17
feedback

1 Answer

up vote 2 down vote accepted

Usually occurs when you have redefined the class in a generic class/method and pass in an object of the old class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.