sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // TCmdLinePrm structure sl@0: // sl@0: // sl@0: sl@0: #ifndef __CN_MAIN_H__ sl@0: #define __CN_MAIN_H__ sl@0: sl@0: #include sl@0: sl@0: /** sl@0: TCmdLinePrm structure represents parsed command line arguments - sl@0: requested action (input, output), text file path, binary file path. sl@0: @internalComponent sl@0: */ sl@0: struct TCmdLinePrm sl@0: { sl@0: void Zero() sl@0: { sl@0: iAction = ENone; sl@0: iTxtFile.Zero(); sl@0: iBinFile.Zero(); sl@0: } sl@0: typedef enum {ENone, ETxt2Bin, EBin2Txt} TAction;//Requested action type sl@0: TAction iAction;//ETxt2Bin: TXT->BIN, or EBin2Txt: BIN->TXT (not implemented) sl@0: TFileName iTxtFile;//Text policy file path sl@0: TFileName iBinFile;//Binary policy file path sl@0: }; sl@0: sl@0: #endif//__CN_MAIN_H__