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: // TSPConvUtil class sl@0: // sl@0: // sl@0: sl@0: #ifndef __CN_UTIL_H__ sl@0: #define __CN_UTIL_H__ sl@0: sl@0: #include sl@0: sl@0: //Forward declarations sl@0: class CCommandLineArguments; sl@0: struct TCmdLinePrm; sl@0: class RFs; sl@0: sl@0: /** sl@0: TSPConvUtil is a utility class with a set of static methods, which do things, like: sl@0: parsing command line arguments, printing messages, file existence checking, constructing sl@0: binary file name, extracting the UID from a binary file name. sl@0: @internalComponent sl@0: */ sl@0: class TSPConvUtil sl@0: { sl@0: public: sl@0: static void ParseL(const CCommandLineArguments& aCmdLineParser, TCmdLinePrm& aCmdLinePrm); sl@0: static TBool FileExists(RFs& aFs, const TDesC& aFile); sl@0: static void ConstructBinFileNameL(TDes& aFile); sl@0: static TUid UidFromFileNameL(const TDesC& aFile); sl@0: static void Print(const TDesC& aText); sl@0: static void Print(const TDesC& aFormat, TInt aNumber); sl@0: static void Print(const TDesC& aFormat, const TDesC& aText); sl@0: static void Print(const TDesC& aFormat, const TDesC& aText1, const TDesC& aText2); sl@0: private: sl@0: static TBool iPromptOnError; sl@0: }; sl@0: sl@0: #endif//__CN_UTIL_H__