sl@0
|
1 |
// Copyright (c) 1997-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __BACLINE_H
|
sl@0
|
17 |
#define __BACLINE_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __E32BASE_H
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
class CCommandLineArguments : public CBase
|
sl@0
|
25 |
/** Parses command line arguments.
|
sl@0
|
26 |
|
sl@0
|
27 |
The class provides functions to access the arguments that are supplied when
|
sl@0
|
28 |
a program is launched as a new process.
|
sl@0
|
29 |
|
sl@0
|
30 |
The program name is returned as argument 0. Other arguments are returned as
|
sl@0
|
31 |
arguments 1, 2 etc.
|
sl@0
|
32 |
|
sl@0
|
33 |
The Count() function indicates how many arguments there are, including the
|
sl@0
|
34 |
program name. Arguments may be quoted to contain blanks and quotes.
|
sl@0
|
35 |
|
sl@0
|
36 |
The command line arguments and process name occupy 256 characters each. In
|
sl@0
|
37 |
order to minimise the space used throughout the lifetime of a program, it
|
sl@0
|
38 |
is recommended that the program parse the arguments shortly after initialisation,
|
sl@0
|
39 |
save the argument values appropriately, and then destroy the CCommandLineArguments
|
sl@0
|
40 |
object.
|
sl@0
|
41 |
|
sl@0
|
42 |
The main use of this class is in parsing the arguments of WINC command-line
|
sl@0
|
43 |
utilities.
|
sl@0
|
44 |
|
sl@0
|
45 |
This class is not intended for user derivation
|
sl@0
|
46 |
@publishedAll
|
sl@0
|
47 |
@released
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
{
|
sl@0
|
50 |
public:
|
sl@0
|
51 |
// construct/destruct
|
sl@0
|
52 |
IMPORT_C static CCommandLineArguments* NewLC();
|
sl@0
|
53 |
IMPORT_C static CCommandLineArguments* NewL();
|
sl@0
|
54 |
IMPORT_C ~CCommandLineArguments();
|
sl@0
|
55 |
// extract
|
sl@0
|
56 |
IMPORT_C TPtrC Arg(TInt aArg) const;
|
sl@0
|
57 |
IMPORT_C TInt Count() const;
|
sl@0
|
58 |
private:
|
sl@0
|
59 |
CCommandLineArguments();
|
sl@0
|
60 |
void ConstructL();
|
sl@0
|
61 |
private:
|
sl@0
|
62 |
CArrayFixFlat<TPtrC>* iArgs;
|
sl@0
|
63 |
HBufC* iCommandLine;
|
sl@0
|
64 |
TFileName iFileName;
|
sl@0
|
65 |
};
|
sl@0
|
66 |
|
sl@0
|
67 |
#endif
|