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: // CSPTxt2Bin class sl@0: // sl@0: // sl@0: sl@0: #ifndef __CN_TXT2BIN_H__ sl@0: #define __CN_TXT2BIN_H__ sl@0: sl@0: #include "cn_proc.h" sl@0: sl@0: //Forward declarations sl@0: struct TCmdLinePrm; sl@0: class TCmdProcessorFactory; sl@0: class RFs; sl@0: sl@0: /** sl@0: CSPTxt2Bin class implements CCmdProcessor interface and describes an object which sl@0: takes a text policy file as an input, loads all policies in memory and then stores sl@0: them in a binary policy file. sl@0: @see CCmdProcessor sl@0: @see TCmdProcessorFactory sl@0: @see TCmdLinePrm sl@0: @internalComponent sl@0: */ sl@0: class CSPTxt2Bin : private CCmdProcessor sl@0: { sl@0: friend class TCmdProcessorFactory; sl@0: sl@0: public: sl@0: virtual void RunL(); sl@0: virtual ~CSPTxt2Bin(); sl@0: sl@0: private: sl@0: inline CSPTxt2Bin(RFs& aFs, const TCmdLinePrm& aCmdLinePrm); sl@0: static CSPTxt2Bin* NewLC(RFs& aFs, const TCmdLinePrm& aCmdLinePrm); sl@0: void ConstructL(); sl@0: sl@0: }; sl@0: sl@0: #endif//__CN_TXT2BIN_H__