📄 proxy.cpp
字号:
//
// Proxy.cpp
#include <e32std.h>
#include <ImplementationProxy.h>
#include "CHardwareCrypto.h"
#include "CSoftwareCrypto.h"
// Map the interface UIDs to implementation factory functions
const TImplementationProxy ImplementationTable[] =
{
{{0x10008EE4}, CHardwareCrypto::NewL},
{{0x10008EE5}, CSoftwareCrypto::NewL}
};
// Exported proxy for instantiation method resolution
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
{
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
return ImplementationTable;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -