diff options
Diffstat (limited to 'libempathy/empathy-location.h')
-rw-r--r-- | libempathy/empathy-location.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/libempathy/empathy-location.h b/libempathy/empathy-location.h new file mode 100644 index 000000000..a43e2d385 --- /dev/null +++ b/libempathy/empathy-location.h @@ -0,0 +1,55 @@ +/* + * Copyright (C) 2008 Collabora Ltd. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Authors: Pierre-Luc Beaudoin <pierre-luc.beaudoin@collabora.co.uk> + */ + +#ifndef __EMPATHY_LOCATION_H__ +#define __EMPATHY_LOCATION_H__ + +#include <glib.h> + +G_BEGIN_DECLS + +#define EMPATHY_LOCATION_COUNTRY_CODE "countrycode" +#define EMPATHY_LOCATION_COUNTRY "country" +#define EMPATHY_LOCATION_REGION "region" +#define EMPATHY_LOCATION_LOCALITY "locality" +#define EMPATHY_LOCATION_AREA "area" +#define EMPATHY_LOCATION_POSTAL_CODE "postalcode" +#define EMPATHY_LOCATION_STREET "street" +#define EMPATHY_LOCATION_BUILDING "building" +#define EMPATHY_LOCATION_FLOOR "floor" +#define EMPATHY_LOCATION_ROOM "room" +#define EMPATHY_LOCATION_TEXT "text" +#define EMPATHY_LOCATION_DESCRIPTION "description" +#define EMPATHY_LOCATION_URI "uri" +#define EMPATHY_LOCATION_LAT "lat" +#define EMPATHY_LOCATION_LON "lon" +#define EMPATHY_LOCATION_ALT "alt" +#define EMPATHY_LOCATION_ACCURACY_LEVEL "accuracy-level" +#define EMPATHY_LOCATION_ERROR "error" +#define EMPATHY_LOCATION_VERTICAL_ERROR_M "vertical-error-m" +#define EMPATHY_LOCATION_HORIZONTAL_ERROR_M "horizontal-error-m" +#define EMPATHY_LOCATION_SPEED "speed" +#define EMPATHY_LOCATION_BEARING "bearing" +#define EMPATHY_LOCATION_CLIMB "climb" +#define EMPATHY_LOCATION_TIMESTAMP "timestamp" + +G_END_DECLS + +#endif /* __EMPATHY_LOCATION_H__ */ |