~ubuntu-branches/ubuntu/quantal/qtmobility/quantal

« back to all changes in this revision

Viewing changes to plugins/contacts/symbian/contactsmodel/cntplsql/inc/cntsqlsearchinterface.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-16 16:18:07 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20101116161807-k2dzt2nyse975r3l
Tags: 1.1.0-0ubuntu1
* New upstream release
* Syncronise with Debian, no remaining changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
 
4
/*
 
5
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
 
6
* All rights reserved.
 
7
* This component and the accompanying materials are made available
 
8
* under the terms of "Eclipse Public License v1.0"
 
9
* which accompanies this distribution, and is available
 
10
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
 
11
*
 
12
* Initial Contributors:
 
13
* Nokia Corporation - initial contribution.
 
14
*
 
15
* Contributors:
 
16
*
 
17
* Description: Retrieves the character map for each of the numeric keys.
 
18
*/
 
19
 
 
20
#ifndef CNTSQLSEARCHINTERFACE_H_
 
21
#define CNTSQLSEARCHINTERFACE_H_
 
22
 
 
23
#include <QString>
 
24
 
 
25
class CPcsKeyMap;
 
26
 
 
27
class CntSqlSearchInterface 
 
28
{
 
29
public:
 
30
    enum QueryType { NA, KoreaITUT };
 
31
    
 
32
public:
 
33
    
 
34
    virtual ~CntSqlSearchInterface() {};
 
35
    
 
36
public: //abstracts
 
37
 
 
38
    virtual QString createInputSpecificSearch(const QString &pattern) = 0;
 
39
    
 
40
    virtual QueryType getQueryType() = 0;
 
41
    
 
42
};
 
43
//#endif
 
44
#endif /* CNTSQLSEARCHINTERFACE_H_ */