os/persistentdata/persistentstorage/dbms/SPConv/cn_cmdparse.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/dbms/SPConv/cn_cmdparse.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,64 @@
     1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// CCommandLineArguments class
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __CN_CMDPARSE_H__
    1.22 +#define __CN_CMDPARSE_H__
    1.23 +
    1.24 +#include <e32base.h>
    1.25 +
    1.26 +/* Parses command line arguments.
    1.27 +
    1.28 +The class provides functions to access the arguments that are supplied when 
    1.29 +a program is launched as a new process. 
    1.30 +
    1.31 +The program name is returned as argument 0. Other arguments are returned as 
    1.32 +arguments 1, 2 etc. 
    1.33 +
    1.34 +The Count() function indicates how many arguments there are, including the 
    1.35 +program name. Arguments may be quoted to contain blanks and quotes.
    1.36 +
    1.37 +The command line arguments and process name occupy 256 characters each. In 
    1.38 +order to minimise the space used throughout the lifetime of a program, it 
    1.39 +is recommended that the program parse the arguments shortly after initialisation, 
    1.40 +save the argument values appropriately, and then destroy the CCommandLineArguments 
    1.41 +object.
    1.42 +
    1.43 +The main use of this class is in parsing the arguments of command-line 
    1.44 +utilities. 
    1.45 +@internalComponent
    1.46 +*/
    1.47 +class CCommandLineArguments : public CBase
    1.48 +	{
    1.49 +public:
    1.50 +	static CCommandLineArguments* NewLC();
    1.51 +	static CCommandLineArguments* NewL();
    1.52 +	virtual ~CCommandLineArguments();
    1.53 +	TPtrC Arg(TInt aArg) const;
    1.54 +	TInt Count() const;
    1.55 +
    1.56 +private:
    1.57 +	inline CCommandLineArguments();
    1.58 +	void ConstructL();
    1.59 +
    1.60 +private:
    1.61 +	CArrayFixFlat<TPtrC>* iArgs;
    1.62 +	HBufC* iCommandLine;
    1.63 +	TFileName iFileName;
    1.64 +
    1.65 +	};
    1.66 +
    1.67 +#endif//__CN_CMDPARSE_H__