messagingfw/biomsgfw/IACPINC/SMSP.H
changeset 0 8e480a14352b
equal deleted inserted replaced
-1:000000000000 0:8e480a14352b
       
     1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // SMS settings parser
       
    15 // 
       
    16 //
       
    17 
       
    18 #ifndef __SMSP_H__
       
    19 #define __SMSP_H__
       
    20 
       
    21 #if !defined (__SMUTSET_H__)
       
    22 #include <smutset.h>
       
    23 #endif
       
    24 
       
    25 
       
    26 class CSmsParser : public CBase
       
    27 /**
       
    28 @internalComponent
       
    29 @released
       
    30 */
       
    31 	{
       
    32 public:
       
    33 	static CSmsParser* NewLC();
       
    34 	static CSmsParser* NewL();
       
    35 
       
    36 	~CSmsParser();
       
    37 	void ParseL(CParsedFieldCollection& aIacpFields);
       
    38 	void ProcessL(CMsvEntry& aEntry); 
       
    39 	
       
    40 private:
       
    41 	CSmsParser();
       
    42 	void ConstructL();
       
    43 	void FindServiceCentreAddressL();
       
    44 
       
    45 private:
       
    46 	CSmsSettings*	iSmsSettings;
       
    47 	HBufC*			iServiceCentreName;
       
    48 	HBufC*			iServiceCentreAddress;
       
    49 	};
       
    50 	
       
    51 #endif // __SMSP_H__