I am trying to get a new class from the old. The base class declaration is as follows:
class Driver : public Plugin, public CmdObject
{
protected:
Driver();
public:
static Driver* GetInstance();
virtual Engine& GetEngine();
public:
virtual bool InitPlugin (Mgr* pMgr);
virtual bool Open();
virtual bool Close();
virtual bool ExecObjCmd(uint16 cmdID, uint16 nbParams, CommandParam *pParams, CmdChannelError& error);
Mgr *m_pMgr;
protected:
Services *m_pServices;
Engine m_Engine;
};
Its constructor looks like this:
Driver::Driver() :
YCmdObject("Driver", (CmdObjectType)100, true),
m_Engine("MyEngine")
{
Services *m_pServices = NULL;
Mgr *m_pMgr = NULL;
}
Therefore, when I created my derived class, I first tried just inheriting from the base class:
class NewDriver : public Driver
and copy the constructor:
NewDriver::NewDriver() :
CmdObject("NewDriver", (EYCmdObjectType)100, true),
m_Engine("MyNewEngine")
{
Services *m_pServices = NULL;
Mgr *m_pMgr = NULL;
}
The compiler (VisualDSP ++ 5.0 from Analog Devices) did not like:
".\NewDriver.cpp", line 10: cc0293: error: indirect nonvirtual base
class is not allowed
CmdObject("NewDriver", (EYCmdObjectType)100, true),
This made sense, so I decided to directly inherit from Plugin and CmdObject. To avoid inheritance ambiguity problems (as I thought), I used virtual inheritance:
class NewDriver : public Driver, public virtual Plugin, public virtual CmdObject
But then, when implementing the virtual method in NewDriver, I tried to call the Mgr :: RegisterPlugin method, which the plugin * accepts, and I got the following:
".\NewDriver.cpp", line 89: cc0286: error: base class "Plugin" is
ambiguous
if (!m_pMgr->RegisterPlugin(this))
How is this pointer ambiguous and how to resolve it?
Thank,
- Paul