Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // CCmdProcessor class
23 //Forward declarations
28 CCmdProcessor class describes an interface to an object which primary purpose is to
29 execute requested action, determined by the application's command line arguments.
30 CCmdProcessor interface implementations have to override pure virtual RunL() method, which
31 will be called in order command line action to be executed.
34 class CCmdProcessor : public CBase
37 virtual void RunL() = 0;
40 inline CCmdProcessor(RFs& aFs, const TCmdLinePrm& aCmdLinePrm) :
42 iCmdLinePrm(aCmdLinePrm)
48 const TCmdLinePrm& iCmdLinePrm;
53 TCmdProcessorFactory class serves itself as a factory for objects which implement
54 CCmdProcessor interface.
55 Depending on the requested action (TCmdLinePrm::TAction enum) TCmdProcessorFactory instance
56 will create an object (which class implements CCmdProcessor interface), capable to perform the
62 class TCmdProcessorFactory
65 static CCmdProcessor* NewLC(RFs& aFs, const TCmdLinePrm& aCmdLinePrm);