Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Messaging / BccRecipient.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License. 
15 */
16
17
18 /**
19  *
20  *
21  * @file       BccRecipient.h
22  * @author     Pawel Misiak (p.misiak@samsung.com)
23  * @version    0.1
24  * @brief
25  */
26 #ifndef BCCRECIPIENT_H
27 #define BCCRECIPIENT_H
28
29 #include <string>
30 #include "Recipient.h"
31
32 namespace TizenApis {
33 namespace Api {
34 namespace Messaging {
35
36 class BccRecipient
37 {
38   private: // fields
39
40     RecipientsPtr m_bccRecipients;
41
42   public:
43
44     BccRecipient();
45
46     virtual ~BccRecipient();
47
48     void setBccValidity(bool state);
49
50     bool getBccValidity() const;
51
52     Recipients getBccRecipients() const;
53
54     RecipientsPtr getBccRecipientsPtr() const;
55
56     void appendBccRecipients(const std::string & value);
57
58     void appendBccRecipients(const Recipients& value);
59
60     void removeBccRecipients(const Recipients& value);
61
62     void setBccRecipients(const Recipients& value);
63 };
64 }
65 }
66 }
67 #endif