tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / 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  * @file       BccRecipient.h
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #ifndef BCCRECIPIENT_H
25 #define BCCRECIPIENT_H
26
27 #include <string>
28 #include "Recipient.h"
29
30 namespace WrtDeviceApis {
31 namespace Messaging{
32 namespace Api {
33
34 class BccRecipient
35 {
36   private: // fields
37
38     RecipientsPtr m_bccRecipients;
39
40   public:
41
42     BccRecipient();
43
44     virtual ~BccRecipient();
45
46     void setBccValidity(bool state);
47
48     bool getBccValidity() const;
49
50     Recipients getBccRecipients() const;
51
52     RecipientsPtr getBccRecipientsPtr() const;
53
54     void appendBccRecipients(const std::string & value);
55
56     void appendBccRecipients(const Recipients& value);
57
58     void removeBccRecipients(const Recipients& value);
59
60     void setBccRecipients(const Recipients& value);
61 };
62
63 }
64 }
65 }
66
67 #endif