emailservices/nmclientapi/inc/nmapiemailaddress_p.h
changeset 23 2dc6caa42ec3
equal deleted inserted replaced
20:ecc8def7944a 23:2dc6caa42ec3
       
     1 /*
       
     2  * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description: 
       
    15  *
       
    16  */
       
    17 #ifndef NMAPIEMAILADDRESS_P_H
       
    18 #define NMAPIEMAILADDRESS_P_H
       
    19 
       
    20 #include <QSharedData>
       
    21 
       
    22 #include <QString>
       
    23 
       
    24 namespace EmailClientApi
       
    25 {
       
    26 
       
    27 class NmApiEmailAddressPrivate : public QSharedData
       
    28 {
       
    29 public:
       
    30     NmApiEmailAddressPrivate()
       
    31     {
       
    32     }
       
    33     
       
    34     virtual ~NmApiEmailAddressPrivate()
       
    35     {
       
    36     }
       
    37     
       
    38     QString displayName;
       
    39     QString address;
       
    40 };
       
    41 }
       
    42 #endif /* NMAPIEMAILADDRESS_P_H_ */