os/mm/mm_plat/custom_interface_builder_api/inc/CustomInterfaceCustomCommandParser.h
Update contrib.
2 * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Custom Interface CustomCommand Parser
18 #ifndef __CUSTOMINTERFACECUSTOMCOMMANDPARSER_H
19 #define __CUSTOMINTERFACECUSTOMCOMMANDPARSER_H
21 #include <mmf/common/mmfcontroller.h>
23 class MCustomInterfaceCustomCommandImplementor;
25 class CCustomInterfaceCustomCommandParser : public CMMFCustomCommandParserBase
28 IMPORT_C static CCustomInterfaceCustomCommandParser* NewL(MCustomInterfaceCustomCommandImplementor& aImplementor);
30 virtual ~CCustomInterfaceCustomCommandParser();
32 virtual void HandleRequest(TMMFMessage& aMessage);
35 CCustomInterfaceCustomCommandParser(MCustomInterfaceCustomCommandImplementor& aImplementor);
36 virtual void ConstructL();
38 void DoHandleRequestL(TMMFMessage& aMessage);
39 void DoGetBuilderL(TMMFMessage& aMessage);
42 MCustomInterfaceCustomCommandImplementor& iImplementor;