upload tizen1.0 source
[framework/location/libslp-location.git] / location / manager / location-velocity.h
similarity index 93%
rename from location/location-velocity.h
rename to location/manager/location-velocity.h
index 5dc1c81..5112298 100644 (file)
 #ifndef __LOCATION_VELOCITY_H_
 #define __LOCATION_VELOCITY_H_
 
-#include <location/location-types.h>
+#include <location-types.h>
+
+G_BEGIN_DECLS
+
+GType location_velocity_get_type (void);
+#define LOCATION_TYPE_VELOCITY                 (location_velocity_get_type ())
 
 /**
  * @file location-velocity.h
  * @brief This file contains the internal definitions and structures related to velocity information.
- * @addtogroup LocationTypes
+ */
+/**
+ * @addtogroup LocationAPI
+ * @{
+ * @defgroup LocationAPIVelocity Location Velocity
+ * @breif This provides APIs related to Location Velocity
+ * @addtogroup LocationAPIVelocity
  * @{
  */
 
-G_BEGIN_DECLS
-
 /**
  * @brief This represents velocity information such as as speed, direction, climb.
  */
@@ -45,9 +54,6 @@ struct _LocationVelocity
        gdouble climb;                  ///< The vertical speed. (km/h)
 };
 
-GType location_velocity_get_type (void);
-#define LOCATION_TYPE_VELOCITY                 (location_velocity_get_type ())
-
 /**
  * @brief   Create a new #LocationVelocity with given information.
  * @remarks None.
@@ -98,7 +104,7 @@ gboolean location_velocity_equal (const LocationVelocity *velocity1, const Locat
 LocationVelocity *location_velocity_copy (const LocationVelocity *velocity);
 
 /**
- * @}
+ * @} @}
  */
 
 G_END_DECLS