wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / Contact / ContactRef.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        ContactRef.h
20  * @author      Kisub Song (kisubs.song@samsung.com)
21  * @version     0.1
22  * @brief
23  */
24
25 #ifndef _API_CONTACT_CONTACT_REF_H_
26 #define _API_CONTACT_CONTACT_REF_H_
27
28 #include <ctime>
29 #include <string>
30 #include <vector>
31 #include <dpl/shared_ptr.h>
32
33 namespace DeviceAPI {
34 namespace Contact {
35
36 class ContactRef;
37 typedef DPL::SharedPtr<ContactRef> ContactRefPtr;
38
39 typedef std::vector<ContactRefPtr> ContactRefArray;
40 typedef DPL::SharedPtr<ContactRefArray> ContactRefArrayPtr;
41
42 class ContactRef
43 {
44 public:
45         ContactRef();
46         virtual ~ContactRef();
47
48         std::string getAddressBookId() const;
49         void setAddressBookId(const std::string value);
50         void setAddressBookId(const int value);
51         bool getAddressBookIdIsSet() const;
52
53         std::string getContactId() const;
54         void setContactId(const std::string value);
55         void setContactId(const int value);
56         bool getContactIdIsSet() const;
57
58         virtual void clear();
59         virtual ContactRefPtr clone();
60
61 protected:
62         std::string     m_addressBookId;
63         bool            m_addressBookIdIsSet;
64
65         std::string     m_contactId;
66         bool            m_contactIdIsSet;
67 };
68
69 } // Contact
70 } // DeviceAPI
71
72 #endif // _API_CONTACT_CONTACT_REF_H_