Fix:maptool:Another name for faroe islands
[navit-package] / navit / mapset.h
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 #ifndef NAVIT_MAPSET_H
21 #define NAVIT_MAPSET_H
22
23 /* prototypes */
24 enum attr_type;
25 struct attr;
26 struct attr_iter;
27 struct item;
28 struct map;
29 struct mapset;
30 struct mapset_handle;
31 struct mapset_search;
32 struct mapset *mapset_new(struct attr *parent, struct attr **attrs);
33 struct attr_iter *mapset_attr_iter_new(void);
34 void mapset_attr_iter_destroy(struct attr_iter *iter);
35 int mapset_add_attr(struct mapset *ms, struct attr *attr);
36 int mapset_get_attr(struct mapset *ms, enum attr_type type, struct attr *attr, struct attr_iter *iter);
37 void mapset_destroy(struct mapset *ms);
38 struct mapset_handle *mapset_open(struct mapset *ms);
39 struct map *mapset_next(struct mapset_handle *msh, int active);
40 void mapset_close(struct mapset_handle *msh);
41 struct mapset_search *mapset_search_new(struct mapset *ms, struct item *item, struct attr *search_attr, int partial);
42 struct item *mapset_search_get_item(struct mapset_search *this);
43 void mapset_search_destroy(struct mapset_search *this);
44 /* end of prototypes */
45 #endif