email_plat/nmail_client_api/nmapitextcontent.h
changeset 75 47d84de1c893
equal deleted inserted replaced
72:64e38f08e49c 75:47d84de1c893
       
     1 /*
       
     2  * Copyright (c) 2010 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  *     Email message text content public header.
       
    16  */
       
    17 
       
    18 #ifndef NMAPITEXTCONTENT_H_
       
    19 #define NMAPITEXTCONTENT_H_
       
    20 
       
    21 #include <QString>
       
    22 
       
    23 #include <nmapimessagecontent.h>
       
    24 #include <nmapidef.h>
       
    25 
       
    26 namespace EmailClientApi
       
    27 {
       
    28 class NmApiTextContentPrivate;
       
    29 
       
    30 class NMAPI_EXPORT NmApiTextContent : public NmApiMessageContent
       
    31 {
       
    32 public:
       
    33     NmApiTextContent();
       
    34     virtual ~NmApiTextContent();
       
    35 
       
    36     QString content() const;
       
    37     void setContent(const QString &content);
       
    38 
       
    39 private:
       
    40     
       
    41     NmApiTextContentPrivate *d;
       
    42 };
       
    43 }
       
    44 
       
    45 #endif /* NMAPITEXTCONTENT_H_ */