shaperesolver.h

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· C头文件 代码 · 共 44 行

H
44
字号

#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 + =
减小字号Ctrl + -
显示快捷键?