emailservices/nmclientapi/inc/nmapifolder_p.h
changeset 23 2dc6caa42ec3
child 48 10eaf342f539
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 
       
    18 #ifndef NMAPIMAILBOX_P_H
       
    19 #define NMAPIMAILBOX_P_H
       
    20 
       
    21 #include <nmapicommon.h>
       
    22 
       
    23 
       
    24 namespace EmailClientApi
       
    25 {
       
    26 
       
    27 class NmApiFolderPrivate : public QSharedData
       
    28 {
       
    29 public:
       
    30     NmApiFolderPrivate() 
       
    31     {
       
    32         
       
    33     }
       
    34     virtual ~NmApiFolderPrivate()
       
    35     {
       
    36         
       
    37     }
       
    38 
       
    39     quint64 id;
       
    40     QString name;
       
    41     EmailClientApi::NmApiEmailFolderType folderType;
       
    42     quint64 parentId;
       
    43     QList<quint64> childFolderIds;
       
    44 };
       
    45 
       
    46 }
       
    47 
       
    48 #endif /* NMAPIMAILBOX_P_H_ */