upload tizen1.0 source
[framework/location/libslp-location.git] / location / map-service / location-geocode.h
similarity index 51%
rename from location/location-geocode.h
rename to location/map-service/location-geocode.h
index efb4ac1..1e8b4de 100644 (file)
 #ifndef __LOCATION_GEOCODE_H__
 #define __LOCATION_GEOCODE_H__
 
-#include <glib-object.h>
+#include <location-types.h>
+
+G_BEGIN_DECLS
 
 /**
  * @file location-geocode.h
  * @brief This file contains the internal definitions and structures related to geocode.
- * @addtogroup LocationInternal
+ * @addtogroup LocationMapService
  * @{
  * @}
  */
 
-G_BEGIN_DECLS
-
-#define LOCATION_TYPE_GEOCODE                  (location_geocode_get_type ())
-#define LOCATION_GEOCODE(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), LOCATION_TYPE_GEOCODE, LocationGeocode))
-#define LOCATION_IS_GEOCODE(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LOCATION_TYPE_GEOCODE))
-#define LOCATION_GEOCODE_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), LOCATION_TYPE_GEOCODE, LocationGeocodeClass))
-#define LOCATION_IS_GEOCODE_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), LOCATION_TYPE_GEOCODE))
-#define LOCATION_GEOCODE_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), LOCATION_TYPE_GEOCODE, LocationGeocodeClass))
-
-typedef struct _LocationGeocode        LocationGeocode;
-typedef struct _LocationGeocodeClass   LocationGeocodeClass;
-
-struct _LocationGeocode
-{
-       GObject parent_instance;
-};
-
-struct _LocationGeocodeClass
-{
-       GObjectClass parent_class;
-};
-
-GType location_geocode_get_type (void);
-
 G_END_DECLS
 
 #endif