phoneengine/phonecntfinder2/tsrc/mocks/qcontactname.h
author hgs
Mon, 04 Oct 2010 16:06:10 +0300
changeset 76 cfea66083b62
parent 21 92ab7f8d0eab
permissions -rw-r--r--
201039

/*
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/



#ifndef QCONTACTNAME_H
#define QCONTACTNAME_H

#include <QString>

#include "qtcontactsglobal.h"
#include "qcontactdetail.h"
#include "qcontact.h"

class QContactName : public QContactDetail
{
public:

    Q_DECLARE_CUSTOM_CONTACT_DETAIL(QContactName, "Name")
    Q_DECLARE_LATIN1_LITERAL(FieldPrefix, "Prefix");
    Q_DECLARE_LATIN1_LITERAL(FieldFirst, "First");
    Q_DECLARE_LATIN1_LITERAL(FieldMiddle, "Middle");
    Q_DECLARE_LATIN1_LITERAL(FieldLast, "Last");
    Q_DECLARE_LATIN1_LITERAL(FieldSuffix, "Suffix");

};

#endif