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: // TCmdProcessorFactory class. sl@0: // sl@0: // sl@0: sl@0: #include "cn_main.h" sl@0: #include "cn_bin2txt.h" sl@0: #include "cn_txt2bin.h" sl@0: sl@0: /** sl@0: Factory method for CCmdProcessor interface implementations. sl@0: It creates and returns either CSPExport or CSPImport instance, depending on sl@0: the value of aCmdLinePrm.iAction data member. sl@0: @param aFs File server session object reference. sl@0: @param aCmdLinePrm It contains parsed command line arguments. sl@0: @return A pointer to just created CCmdProcessor interface implementation. sl@0: @leave CSPBin2Txt::NewLC() and CSPTxt2Bin::NewLC() leaving error codes. sl@0: @see CCmdProcessor sl@0: @see CSPBin2Txt sl@0: @see CSPTxt2Bin sl@0: */ sl@0: CCmdProcessor* TCmdProcessorFactory::NewLC(RFs& aFs, const TCmdLinePrm& aCmdLinePrm) sl@0: { sl@0: CCmdProcessor* proc = NULL; sl@0: if(aCmdLinePrm.iAction == TCmdLinePrm::EBin2Txt) sl@0: { sl@0: proc = CSPBin2Txt::NewLC(aFs, aCmdLinePrm); sl@0: } sl@0: else if(aCmdLinePrm.iAction == TCmdLinePrm::ETxt2Bin) sl@0: { sl@0: proc = CSPTxt2Bin::NewLC(aFs, aCmdLinePrm); sl@0: } sl@0: return proc; sl@0: }