考虑如下idl
定义:
interface IServerConnection : IDispatch {
[id(1), helpstring("method IsConnected")] HRESULT IsConnected([out] BOOL* pVal);
};
interface IClientControl : IDispatch {
[id(1), helpstring("method GetServerConnection")] HRESULT GetServerConnection([out] IServerConnection** ppServerConnection);
};
dumpcpp
生成代码如下:
class IServerConnection : public QAxObject
{
public:
...
inline void IsConnected(int& pVal);
...
};
class ClientControl : public QAxWidget
{
public:
...
ClientControl (IClientControl *iface)
: QAxWidget()
{
initializeFrom(iface);
delete iface;
}
inline void GetServerConnection(IServerConnection** ppServerConnection);
...
};
如果我直接调用它会返回类型不匹配ClientControl::GetServerConnection
。
QAxBase:调用 IDispatch 成员 GetServerConnection 时出错:参数 0 中的类型不匹配
如何IServerConnection
从ClientControl
?
在@Remy Lebeau 的建议下,idl
更改为:
interface IServerConnection : IDispatch {
[id(1), helpstring("method IsConnected")] HRESULT IsConnected([out] BOOL* pVal);
};
interface IClientControl : IDispatch {
[id(1), helpstring("method GetServerConnection")] HRESULT GetServerConnection([out, retval] IServerConnection** ppServerConnection);
};
然后生成的源代码dumpcpp
:
class ClientControl : public QAxWidget
{
public:
...
inline IServerConnection* GetServerConnection();
...
};
通过调用GetServerConnection
如下:
ClientControl ctrl;
auto conn = ctrl.GetServerConnection();
它输出:
QVariantToVARIANT: out-parameter not supported for "subtype". QAxBase: Error calling IDispatch member GetServerConnection: Member not found
更改背后的源代码或实现idl
是不可能的。我无法将接口更改为返回类型,这是另一个问题。
这更像是一个Qt
问题,而不是idl
.