Update contrib.
1 // Copyright (c) 2010 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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Header file of the ECom impletementation of for testing contact matching.
17 #ifndef __CNTMATCHLOG_H__
18 #define __CNTMATCHLOG_H__
21 #include <logcntmodel.h>
26 const TInt KNumberOfItems = 7;
28 _LIT(KNumber1, "447700900000");
29 _LIT(KNumber2, "+441632960000");
30 _LIT(KNumber3, "07700900001");
31 _LIT(KNumber4, "447756900111");
32 _LIT(KNumber5, "447756900111");
33 _LIT(KNumber6, "1234567890");
34 _LIT(KNumber7, "0123456789");
36 _LIT(KFirstName1, "Barney");
37 _LIT(KFirstName2, "Elma");
38 _LIT(KFirstName3, "Peter");
39 _LIT(KFirstName4, "Abc");
40 _LIT(KFirstName5, "Rtyu");
41 _LIT(KFirstName6, "Zxcvb");
42 _LIT(KFirstName7, "AAA");
44 _LIT(KLastName1, "Rubble");
45 _LIT(KLastName2, "Fudd");
46 _LIT(KLastName3, "Harper");
47 _LIT(KLastName4, "Lkjhgf");
48 _LIT(KLastName5, "Poiuytqwe");
49 _LIT(KLastName6, "Mnbvcxz");
50 _LIT(KLastName7, "BBB");
52 /** Plugin implementation that provide contacts matching functionality.
56 class CLogTestCntMatch : public CLogCntModel
59 static CLogTestCntMatch* NewL();
60 virtual void OpenContactsL();
61 virtual void CloseContacts();
62 virtual TLogContactItemId MatchPhoneNumberL(const TDesC& aNumber, TInt aMatchLengthFromRight);
63 virtual void ReadContactNameL(TLogContactItemId aContactId, TDes &aName, TLogContactNameFormat aNameFormat);
70 CDesCArray* iTelNumbers;
71 CDesCArray* iContactFirstNames;
72 CDesCArray* iContactLastNames;