[M67 Dev][API] Switch ewk_export.h with tizen.h
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / efl_integration / public / ewk_page_group.h
1 // Copyright 2014 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6  * @file    ewk_page_group.h
7  * @brief   Describes the Ewk Page Group API.
8  */
9
10 #ifndef ewk_page_group_h
11 #define ewk_page_group_h
12
13 #include <Eina.h>
14 #include <tizen.h>
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 /**
21  * Declare Ewk_Page_Group as Ewk_Object.
22  *
23  * @see Ewk_Object
24  */
25 typedef struct EwkObject Ewk_Page_Group;
26
27 /**
28  * Creates a new Ewk_Page_Group.
29  *
30  * The returned Ewk_Page_Group object @b should be unref'ed after use.
31  *
32  * @return Ewk_Page_Group object on success or @c NULL on failure
33  *
34  * @see ewk_object_unref
35  */
36 EXPORT_API Ewk_Page_Group *ewk_page_group_create(const char *identifier);
37
38 #ifdef __cplusplus
39 }
40 #endif
41
42 #endif // ewk_page_group_h