os/persistentdata/persistentstorage/dbms/SPConv/cn_proc.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// CCmdProcessor class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __CN_PROC_H__
sl@0
    19
#define __CN_PROC_H__
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
sl@0
    23
//Forward declarations
sl@0
    24
struct TCmdLinePrm;
sl@0
    25
class RFs;
sl@0
    26
sl@0
    27
/**
sl@0
    28
CCmdProcessor class describes an interface to an object which primary purpose is to
sl@0
    29
execute requested action, determined by the application's command line arguments.
sl@0
    30
CCmdProcessor interface implementations have to override pure virtual RunL() method, which
sl@0
    31
will be called in order command line action to be executed.
sl@0
    32
@internalComponent
sl@0
    33
*/
sl@0
    34
class CCmdProcessor : public CBase
sl@0
    35
	{
sl@0
    36
public:
sl@0
    37
	virtual void RunL() = 0;
sl@0
    38
sl@0
    39
protected:
sl@0
    40
	inline CCmdProcessor(RFs& aFs, const TCmdLinePrm& aCmdLinePrm) :
sl@0
    41
		iFs(aFs),
sl@0
    42
		iCmdLinePrm(aCmdLinePrm)
sl@0
    43
		{
sl@0
    44
		}
sl@0
    45
sl@0
    46
protected:
sl@0
    47
	RFs&				iFs;
sl@0
    48
	const TCmdLinePrm&	iCmdLinePrm;
sl@0
    49
sl@0
    50
	};
sl@0
    51
sl@0
    52
/**
sl@0
    53
TCmdProcessorFactory class serves itself as a factory for objects which implement
sl@0
    54
CCmdProcessor interface.
sl@0
    55
Depending on the requested action (TCmdLinePrm::TAction enum) TCmdProcessorFactory instance
sl@0
    56
will create an object (which class implements CCmdProcessor interface), capable to perform the
sl@0
    57
requested operation.
sl@0
    58
@see CCmdProcessor
sl@0
    59
@see TCmdLinePrm
sl@0
    60
@internalComponent
sl@0
    61
*/
sl@0
    62
class TCmdProcessorFactory
sl@0
    63
	{
sl@0
    64
public:
sl@0
    65
	static CCmdProcessor* NewLC(RFs& aFs, const TCmdLinePrm& aCmdLinePrm);
sl@0
    66
sl@0
    67
	};
sl@0
    68
sl@0
    69
#endif//__CN_PROC_H__