summaryrefslogtreecommitdiff
path: root/navit/maptype.h
blob: bfaf4e298914efb50f733fc11180290cbe66de7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef NAVIT_MAPTYPE_H
#define NAVIT_MAPTYPE_H

struct map_methods;

struct maptype {
	char *name;
	struct map_priv *(*map_new)(struct map_methods *meth, char *data, char **charset, enum projection *pro);
	struct maptype *next;	
};

/* prototypes */
enum projection;
struct map_methods;
struct map_priv;
struct maptype;
void maptype_register(char *name, struct map_priv *(*map_new)(struct map_methods *meth, char *data, char **charset, enum projection *pro));
struct maptype *maptype_get(const char *name);

#endif