98534d14404c13245f647cece0199c814c1d11b6
[framework/web/wrt-plugins-common.git] / src / modules / API / Camera / EventGetPreviewNode.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      Karol Majewski (k.majewski@samsung.com)
18  * @author      Grzegorz Krawczyk (g.krawczyk@samsung.com)
19  * @version     0.1
20  * @brief
21  */
22
23 #ifndef WRTDEVICEAPIS_CAMERA_API_EVENTGETPREVIEWNODE_H_
24 #define WRTDEVICEAPIS_CAMERA_API_EVENTGETPREVIEWNODE_H_
25
26 #include <dpl/shared_ptr.h>
27 #include <Commons/IEvent.h>
28 #include "SupportCameraPendingOperation.h"
29
30 namespace WrtDeviceApis {
31 namespace Camera {
32 namespace Api {
33
34 class EventGetPreviewNode :
35     public WrtDeviceApis::Commons::IEvent<EventGetPreviewNode>,
36     public SupportCameraPendingOperation
37 {
38 public:
39     typedef void* PreviewNode;
40
41 public:
42     EventGetPreviewNode() : m_node(NULL){}
43
44     void setPreviewNode(PreviewNode node) {m_node = node;}
45
46     PreviewNode getPreviewNode() const {return m_node;}
47
48 private:
49     PreviewNode m_node;
50 };
51
52 typedef DPL::SharedPtr<EventGetPreviewNode> EventGetPreviewNodeSharedPtr;
53
54 }
55 }
56 }
57 #endif // WRTDEVICEAPIS_CAMERA_API_EVENTGETPREVIEWNODE_H_