Change deprecated to 8.0
[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  * @deprecated Deprecated since 8.0.
40  * @brief Structure of the coordinates list.
41  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
42  * @remarks #maps_coordinates_list_h is a void pointer to the #maps_coordinates_list_s.
43  *
44  * @see maps_coordinates_list_create()
45  * @see maps_coordinates_list_destroy()
46  */
47 typedef GList maps_coordinates_list_s;
48
49 /**
50  * @deprecated Deprecated since 8.0.
51  * @brief Structure of the address list.
52  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
53  * @remarks #maps_address_list_h is a void pointer to the #maps_address_list_s.
54  *
55  * @see maps_address_list_create()
56  * @see maps_address_list_destroy()
57  */
58 typedef GList maps_address_list_s;
59
60 /**
61  * @}
62  */
63
64 #ifdef __cplusplus
65 }
66 #endif
67
68 #endif /* __MAPS_PLUGIN_TYPES_H__ */
69
70