我是 COM 新手,我在互联网上四处寻找如何在 C++ 中创建 COM 类(供 C# 使用)。我已经在 .idl 文件中看到了,我必须这样写:
[
object,
uuid(a93164ee-e6d4-44be-aa27-f00ce6972719),
helpstring("interface ITopologyQuery")
]
interface ITopologyQuery : IUnknown
{
HRESULT LoadFile(BSTR completeFileName);
HRESULT SetParameters(int above, int percentage);
}
[
uuid(a958f2af-8b55-43c4-9fc3-c39d83fc1376)
]
library TopologyQueryLib
{
[
uuid(cc814992-31ec-4a1f-a41e-111ade27bdfe),
helpstring("TopologyQuery class")
]
coclass CTopologyQuery
{
[default] interface ITopologyQuery;
};
}
现在我的问题是,您在哪里定义 CTopologyQuery 类?如果我将它定义为另一个文件中的常规 c++ 类,编译器会将我的类与接口正确链接吗?c++ 类代码如下所示(在 .cpp 文件中实现):
class CTopologyQuery : public ITopologyQuery
{
public:
__stdcall CTopologyQuery();
//IUnknown interface
HRESULT __stdcall QueryInterface(REFIID riid, void **ppObj);
ULONG __stdcall AddRef();
ULONG __stdcall Release();
//ITopologyQuery interface
HRESULT __stdcall LoadTopologyFile(BSTR completeFileName);
HRESULT __stdcall SetParameters(int above, int percentage);
private:
};
现在,如果我将库部分放在 .idl 文件中,或者不这样做,它都会编译。我有点失落,因为这里有什么好处?我知道 coclass 定义应该为接口提供默认实现,但对我来说它看起来像一个没有方法的空类......