sl@0: /* sl@0: * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: Proxy CustomInterface Utility sl@0: * sl@0: */ sl@0: sl@0: #ifndef __CPROXYCUSTOMINTERFACEUTILITY_H sl@0: #define __CPROXYCUSTOMINTERFACEUTILITY_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: class CProxyCustomInterfaceUtility : public CCustomInterfaceUtility sl@0: { sl@0: public: sl@0: sl@0: IMPORT_C static CProxyCustomInterfaceUtility* NewL(CCustomCommandUtility* aCustomCommandUtility); sl@0: virtual ~CProxyCustomInterfaceUtility(); sl@0: sl@0: IMPORT_C TAny* CustomInterface(TUid aInterfaceId); sl@0: IMPORT_C void RemoveCustomInterface(TMMFMessageDestinationPckg aMessageHandler); sl@0: sl@0: IMPORT_C static CProxyCustomInterfaceUtility* NewL(MCustomCommand& aMCustomCommand); sl@0: sl@0: private: sl@0: CProxyCustomInterfaceUtility(CCustomCommandUtility* aCustomCommandUtility); sl@0: CProxyCustomInterfaceUtility(MCustomCommand& aMCustomCommand); sl@0: void ConstructL(); sl@0: sl@0: TAny* BuildProxy(TUid aInterfaceId, sl@0: TMMFMessageDestinationPckg aHandle); sl@0: sl@0: sl@0: sl@0: CCustomCommandUtility* iCustomCommandUtility; sl@0: TMMFMessageDestinationPckg iBuilderHandle; sl@0: MCustomCommand* iMCustomCommand; sl@0: }; sl@0: sl@0: #endif sl@0: