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