fc564491fe6be44ef9f524082a2a07ee0aba2043
[framework/web/wrt-plugins-tizen.git] / src / Contact / ContactWebSite.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        ContactWebSite.h
20  * @author      Kisub Song (kisubs.song@samsung.com)
21  * @version     0.1
22  * @brief
23  */
24
25 #ifndef _API_CONTACT_CONTACT_WEB_SITE_H_
26 #define _API_CONTACT_CONTACT_WEB_SITE_H_
27
28 #include <vector>
29 #include <string>
30 #include <dpl/shared_ptr.h>
31 #include "ContactTypes.h"
32
33 namespace DeviceAPI {
34 namespace Contact {
35
36 class ContactWebSite;
37 typedef DPL::SharedPtr<ContactWebSite> ContactWebSitePtr;
38
39 typedef std::vector<ContactWebSitePtr> ContactWebSiteArray;
40 typedef DPL::SharedPtr<ContactWebSiteArray> ContactWebSiteArrayPtr;
41
42 class ContactWebSite
43 {
44 public:
45         ContactWebSite();
46         ~ContactWebSite();
47
48         std::string getUrl() const;
49         void setUrl(const std::string &value);
50         void unsetUrl();
51         bool getUrlIsSet() const;
52
53         ContactWebSiteType getType() const;
54         void setType(const ContactWebSiteType value);
55         void unsetType();
56         bool getTypeIsSet() const;
57
58         void clear();
59         ContactWebSitePtr clone() const;
60
61 private:
62         std::string         m_url;
63         bool            m_urlIsSet;
64
65         ContactWebSiteType          m_type;
66         bool            m_typeIsSet;
67 };
68
69 } // Contact
70 } // DeviceAPI
71
72 #endif // _API_CONTACT_CONTACT_WEB_SITE_H_