⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shaperesolver.h

📁 symbian操作系统应用程序开发 作者周忠良
💻 H
字号:

#ifndef __SHAPERESOLVER_H__
#define __SHAPERESOLVER_H__

#include <resolver.h>

/**
*
* @class    CShapeResolver ShapeResolver.h
* @brief    This is a custome resolver class for the EComShape example
*
* Copyright (c) EMCC Software Ltd 2003
* @version    1.0
*
*/

class CShapeResolver : public CResolver
{
    public:

    static CShapeResolver* NewL (MPublicRegistry& aRegistry);

    virtual ~CShapeResolver();

    virtual TUid IdentifyImplementationL (TUid aInterfaceUid,
        const TEComResolverParams& aAdditionalParameters) const;

    virtual RImplInfoArray* ListAllL (TUid aInterfaceUid,
        const TEComResolverParams& aAdditionalParameters) const;

private:
    CShapeResolver (MPublicRegistry& aRegistry);

    TUid Resolve (const RImplInfoArray& aImplementationsInfo,
        const TEComResolverParams& aAdditionalParameters) const;

    TBool Match (const TDesC8& aImplementationType,  const TDesC8& aMatchType,
        TBool aUseWildcards) const;

};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -