Interface
ShumateLocation
Description [src]
interface Shumate.Location : GObject.Object
An interface common to objects having latitude and longitude
By implementing ShumateLocation
the object declares that it has latitude
and longitude and can be used to specify location on the map.
Prerequisite
In order to implement Location, your type must inherit fromGObject
.
Interface structure
struct ShumateLocationInterface {
double (* get_latitude) (
ShumateLocation* location
);
double (* get_longitude) (
ShumateLocation* location
);
void (* set_location) (
ShumateLocation* location,
double latitude,
double longitude
);
}
An interface common to objects having latitude and longitude.
Interface members
get_latitude |
|
No description available. |
|
get_longitude |
|
No description available. |
|
set_location |
|
No description available. |