summaryrefslogtreecommitdiff
path: root/navit/map/csv/csv.h
diff options
context:
space:
mode:
Diffstat (limited to 'navit/map/csv/csv.h')
-rw-r--r--navit/map/csv/csv.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/navit/map/csv/csv.h b/navit/map/csv/csv.h
new file mode 100644
index 000000000..81ba94805
--- /dev/null
+++ b/navit/map/csv/csv.h
@@ -0,0 +1,47 @@
+/**
+ * Navit, a modular navigation system.
+ * Copyright (C) 2005-2008 Navit Team
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2 as published by the Free Software Foundation.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the
+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#include <stdio.h>
+#include <glib.h>
+
+#include "attr.h"
+#include "coord.h"
+#include "quadtree.h"
+
+
+struct map_priv {
+
+ int id;
+ struct quadtree* tree_root;
+ int flags;
+ GHashTable*item_hash;
+};
+
+#define SIZE 512
+
+struct map_rect_priv {
+ struct map_selection *sel;
+ GList* query_result;
+ GList* curr_item;
+ struct coord c;
+ int bStarted;
+ struct item item;
+ struct map_priv *m;
+};
+