pimprotocols/pbap/inc/pbaprequest.h
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 // Copyright (c) 2006-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 PBAPREQUEST_H
       
    17 #define PBAPREQUEST_H
       
    18 
       
    19 #include <e32def.h>
       
    20 
       
    21 namespace SymbianPBAP
       
    22 	{
       
    23 
       
    24 	//the 64-bit const value for attribute filters
       
    25 	const TUint64 KPbapAttributeAll 			= 0x0;			// All attributes
       
    26 	const TUint64 KPbapAttributeMaskCallDateTime	= 0x10000000;	// X-IRMC-CALL-DATETIME
       
    27 
       
    28 	enum TOrder
       
    29 		{
       
    30 		EIndexed,
       
    31 		EAlphabetical,
       
    32 		EPhonetical,
       
    33 		EUnknownOrder
       
    34 		};
       
    35 		
       
    36 	enum TSearchAttribute
       
    37 		{
       
    38 		EName,
       
    39 		ENumber,
       
    40 		ESound,
       
    41 		EUnknownSearchAttribute
       
    42 		};
       
    43 	}
       
    44 	
       
    45 #endif //PBAPREQUEST_H