tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Contact / EventExportVCard.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  * @author      Lukasz Marek (l.marek@samsung.com)
18  * @version     0.1
19  * @brief
20  */
21
22 #ifndef WRTDEVICEAPIS_CONTACT_EVENT_EXPORT_VCARD_H_
23 #define WRTDEVICEAPIS_CONTACT_EVENT_EXPORT_VCARD_H_
24
25 #include <vector>
26 #include <string>
27 #include <dpl/shared_ptr.h>
28 #include <Commons/IEvent.h>
29 #include <Contact/Contact.h>
30
31 namespace WrtDeviceApis {
32 namespace Contact {
33 namespace Api {
34
35 /* Event sent while exporting VCard file */
36 class EventExportVCard : public Commons::IEvent<EventExportVCard>
37 {
38     bool m_result;
39     std::vector<std::string> m_pathToFiles;
40     std::vector<ContactPtr> m_contacts;
41   public:
42     void setContacts(const std::vector<ContactPtr> &value)
43     {
44         m_contacts = value;
45     }
46     std::vector<ContactPtr> getContacts() const
47     {
48         return m_contacts;
49     }
50     void setPathToFiles(const std::vector<std::string> &value)
51     {
52         m_pathToFiles = value;
53     }
54     std::vector<std::string> getPathToFiles() const
55     {
56         return m_pathToFiles;
57     }
58     void setResult(bool value)
59     {
60         m_result = value;
61     }
62     bool getResult() const
63     {
64         return m_result;
65     }
66
67     EventExportVCard() : m_result(false)
68     {
69     }
70     virtual ~EventExportVCard()
71     {
72     }
73     virtual void clearOnCancel()
74     {
75     }
76 };
77
78 typedef DPL::SharedPtr<EventExportVCard> EventExportVCardPtr;
79
80 }
81 }
82 }
83
84 #endif // WRTDEVICEAPIS_CONTACT_EVENT_EXPORT_VCARD_H_