Change deprecated to 8.0
[platform/core/api/maps-service.git] / include / maps_place_attribute.h
index ecd2db5..d1be1f4 100644 (file)
@@ -18,9 +18,9 @@
 #ifndef __MAPS_PLACE_ATTRIBUTE_H__
 #define __MAPS_PLACE_ATTRIBUTE_H__
 
+#include <tizen.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_ATTRIBUTE_MODULE Attribute
  * @file maps_place_attribute.h
@@ -37,7 +37,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Attribute handle.
  * @details The handle of Place Attribute instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -53,7 +53,7 @@ typedef void *maps_place_attribute_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place attribute handle and releases all its resources.
  * @details This function destroys the place attribute handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -65,11 +65,11 @@ typedef void *maps_place_attribute_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_attribute_clone()
  */
-int maps_place_attribute_destroy(maps_place_attribute_h attribute);
+int maps_place_attribute_destroy(maps_place_attribute_h attribute) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place attribute handle.
  * @details This function clones the place attribute handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -84,14 +84,14 @@ int maps_place_attribute_destroy(maps_place_attribute_h attribute);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_attribute_destroy()
  */
-int maps_place_attribute_clone(const maps_place_attribute_h origin, maps_place_attribute_h *cloned);
+int maps_place_attribute_clone(const maps_place_attribute_h origin, maps_place_attribute_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place attribute ID.
  * @details This function gets the place attribute ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -104,11 +104,11 @@ int maps_place_attribute_clone(const maps_place_attribute_h origin, maps_place_a
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_attribute_get_id(const maps_place_attribute_h attribute, char **id);
+int maps_place_attribute_get_id(const maps_place_attribute_h attribute, char **id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place attribute label.
  * @details This function gets the place attribute label.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -121,11 +121,11 @@ int maps_place_attribute_get_id(const maps_place_attribute_h attribute, char **i
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_attribute_get_label(const maps_place_attribute_h attribute, char **label);
+int maps_place_attribute_get_label(const maps_place_attribute_h attribute, char **label) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place attribute text.
  * @details This function gets the place attribute text.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -138,7 +138,7 @@ int maps_place_attribute_get_label(const maps_place_attribute_h attribute, char
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_attribute_get_text(const maps_place_attribute_h attribute, char **text);
+int maps_place_attribute_get_text(const maps_place_attribute_h attribute, char **text) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus