Fix glib inclusion issue
[platform/core/api/maps-service.git] / include / maps_plugin_types.h
1 /*
2  * Copyright (c) 2014 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 #ifndef __MAPS_PLUGIN_TYPES_H__
18 #define __MAPS_PLUGIN_TYPES_H__
19
20 #include <glib.h>
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 /**
27  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
28  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_OBJECT_LIST Maps Object Lists
29  *
30  * @file maps_plugin_types.h
31  * @brief This section contains API for using list of maps objects
32  *
33  * @addtogroup CAPI_MAPS_CONTAINERS_MODULE_OBJECT_LIST
34  * @{
35  * @brief This provides API for using list of maps objects.
36  */
37
38 /**
39  * @brief Structure of the coordinates list.
40  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
41  * @remarks #maps_coordinates_list_h is a void pointer to the #maps_coordinates_list_s.
42  *
43  * @see maps_coordinates_list_create()
44  * @see maps_coordinates_list_destroy()
45  */
46 typedef GList maps_coordinates_list_s;
47
48 /**
49  * @brief Structure of the address list.
50  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
51  * @remarks #maps_address_list_h is a void pointer to the #maps_address_list_s.
52  *
53  * @see maps_address_list_create()
54  * @see maps_address_list_destroy()
55  */
56 typedef GList maps_address_list_s;
57
58 /**
59  * @}
60  */
61
62 #ifdef __cplusplus
63 }
64 #endif
65
66 #endif /* __MAPS_PLUGIN_TYPES_H__ */
67
68