aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-location.h
diff options
context:
space:
mode:
authorPierre-Luc Beaudoin <pierre-luc@pierlux.com>2008-12-03 00:14:20 +0800
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>2009-05-08 01:37:01 +0800
commitb643c127ad280dee6669578f1f79f7fd9fe868a1 (patch)
tree2f844c50ce166fe92890c6daf771d81fc3a8aa49 /libempathy/empathy-location.h
parent80c31561d6d867ccbfaa2aa53f4bfdff1dc631c1 (diff)
downloadgsoc2013-empathy-b643c127ad280dee6669578f1f79f7fd9fe868a1.tar
gsoc2013-empathy-b643c127ad280dee6669578f1f79f7fd9fe868a1.tar.gz
gsoc2013-empathy-b643c127ad280dee6669578f1f79f7fd9fe868a1.tar.bz2
gsoc2013-empathy-b643c127ad280dee6669578f1f79f7fd9fe868a1.tar.lz
gsoc2013-empathy-b643c127ad280dee6669578f1f79f7fd9fe868a1.tar.xz
gsoc2013-empathy-b643c127ad280dee6669578f1f79f7fd9fe868a1.tar.zst
gsoc2013-empathy-b643c127ad280dee6669578f1f79f7fd9fe868a1.zip
Add Location to EmpathyContact
Diffstat (limited to 'libempathy/empathy-location.h')
-rw-r--r--libempathy/empathy-location.h55
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__ */