phonebookengines_old/contactsmodel/inc/cntconvertercallback.h
branchRCL_3
changeset 19 5b6f26637ad3
equal deleted inserted replaced
18:d4f567ce2e7c 19:5b6f26637ad3
       
     1 // Copyright (c) 2005-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 //
       
    15 
       
    16 #ifndef __CNTCOVERTERCALLBACK_H__
       
    17 #define __CNTCOVERTERCALLBACK_H__
       
    18 
       
    19 class MConverterCallBack
       
    20 /**
       
    21 Interface class for providing Intra-Contact Properties during a PBAP specific contacts export.
       
    22 @released
       
    23 @internalTechnology
       
    24 */
       
    25 {
       
    26 	public:
       
    27 	/**
       
    28 	PBAP clients are supposed to provide any information regarding the contact item represented by aContactId.
       
    29 	This information should be in form of standard vCard property, all such properties should be appended to the array aPropertyList.
       
    30 	*/
       
    31 	virtual	void AddIntraContactPropertiesL(const TContactItemId& aContactId, CArrayPtr<CParserProperty>* aPropertyList) = 0;
       
    32 };
       
    33 
       
    34 #endif //__CNTCOVERTERCALLBACK_H__