Purge underscored header file barriers
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / render-tasks / render-task-list-wrapper.h
1 #ifndef DALI_V8PLUGIN_RENDER_TASK_LIST_WRAPPER_H
2 #define DALI_V8PLUGIN_RENDER_TASK_LIST_WRAPPER_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <v8.h>
23 #include <dali/public-api/render-tasks/render-task-list.h>
24
25 // INTERNAL INCLUDES
26 #include <shared/base-wrapped-object.h>
27
28
29 namespace Dali
30 {
31
32 namespace V8Plugin
33 {
34
35 /**
36  * RenderTaskList  wrapper.
37  * Provides access to RenderTaskList specific functionality
38  */
39 class RenderTaskListWrapper : public BaseWrappedObject
40 {
41
42 public:
43
44   RenderTaskListWrapper( const RenderTaskList& renderTaskList,
45                 GarbageCollectorInterface& gc );
46
47   virtual ~RenderTaskListWrapper();
48
49   /**
50    * Wraps an renderTaskList
51    */
52   static v8::Handle<v8::Object> WrapRenderTaskList(v8::Isolate* isolate, const Dali::RenderTaskList& );
53
54
55   // The RenderTaskListAttribute ObjectTemplate, we cache templates so we don't have
56   // keep generating them everytime we want to create an RenderTaskList
57   static v8::Persistent<v8::ObjectTemplate> mRenderTaskListTemplate;
58
59   RenderTaskList GetRenderTaskList();
60
61
62 private:
63
64   RenderTaskList mRenderTaskList;  ///< renderTaskList object
65
66   static v8::Handle<v8::ObjectTemplate> MakeRenderTaskListTemplate( v8::Isolate* isolate );
67   static v8::Local<v8::ObjectTemplate> GetRenderTaskListTemplate( v8::Isolate* isolate );
68
69 };
70
71 } // namespace V8Plugin
72
73 } // namespace Dali
74
75 #endif // DALI_V8PLUGIN_RENDER_TASK_LIST_WRAPPER_H