Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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.
24 // Not available until Platform 003
26 typedef TBuf<0x100> TBaCommand;
28 class CCommandLineArguments : public CBase
29 /** Parses command line arguments.
31 The class provides functions to access the arguments that are supplied when
32 a program is launched as a new process.
34 The program name is returned as argument 0. Other arguments are returned as
37 The Count() function indicates how many arguments there are, including the
38 program name. Arguments may be quoted to contain blanks and quotes.
40 The command line arguments and process name occupy 256 characters each. In
41 order to minimise the space used throughout the lifetime of a program, it
42 is recommended that the program parse the arguments shortly after initialisation,
43 save the argument values appropriately, and then destroy the CCommandLineArguments
46 The main use of this class is in parsing the arguments of WINC command-line
49 This class is not intended for user derivation */
53 static CCommandLineArguments* NewLC();
54 static CCommandLineArguments* NewL();
55 ~CCommandLineArguments();
57 TPtrC Arg(TInt aArg) const;
60 CCommandLineArguments();
63 CArrayFixFlat<TPtrC>* iArgs;
64 TBaCommand iCommandLine;