equal
deleted
inserted
replaced
|
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 private implementation. |
|
16 */ |
|
17 |
|
18 #include "nmapiheaders.h" |
|
19 |
|
20 namespace EmailClientApi |
|
21 { |
|
22 |
|
23 /*! |
|
24 Class constructor. |
|
25 */ |
|
26 NmApiTextContentPrivate::NmApiTextContentPrivate() |
|
27 { |
|
28 NM_FUNCTION; |
|
29 } |
|
30 |
|
31 /*! |
|
32 Class destructor. |
|
33 */ |
|
34 NmApiTextContentPrivate::~NmApiTextContentPrivate() |
|
35 { |
|
36 NM_FUNCTION; |
|
37 } |
|
38 |
|
39 /*! |
|
40 Getter for content |
|
41 */ |
|
42 QString NmApiTextContentPrivate::content() const |
|
43 { |
|
44 NM_FUNCTION; |
|
45 return mContent; |
|
46 } |
|
47 |
|
48 /*! |
|
49 Setter for content |
|
50 */ |
|
51 void NmApiTextContentPrivate::setContent(const QString &content) |
|
52 { |
|
53 NM_FUNCTION; |
|
54 mContent = content; |
|
55 } |
|
56 |
|
57 } |