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 // CCommandLineArguments class
18 #ifndef __CN_CMDPARSE_H__
19 #define __CN_CMDPARSE_H__
23 /* Parses command line arguments.
25 The class provides functions to access the arguments that are supplied when
26 a program is launched as a new process.
28 The program name is returned as argument 0. Other arguments are returned as
31 The Count() function indicates how many arguments there are, including the
32 program name. Arguments may be quoted to contain blanks and quotes.
34 The command line arguments and process name occupy 256 characters each. In
35 order to minimise the space used throughout the lifetime of a program, it
36 is recommended that the program parse the arguments shortly after initialisation,
37 save the argument values appropriately, and then destroy the CCommandLineArguments
40 The main use of this class is in parsing the arguments of command-line
44 class CCommandLineArguments : public CBase
47 static CCommandLineArguments* NewLC();
48 static CCommandLineArguments* NewL();
49 virtual ~CCommandLineArguments();
50 TPtrC Arg(TInt aArg) const;
54 inline CCommandLineArguments();
58 CArrayFixFlat<TPtrC>* iArgs;
64 #endif//__CN_CMDPARSE_H__