]> git.street.me.uk Git - andy/viking.git/blob - src/terraservermapsource.h
Some spelling fixes in a comment
[andy/viking.git] / src / terraservermapsource.h
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * viking
4  * Copyright (C) 2009, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
5  * 
6  * viking is free software: you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  * 
11  * viking is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  * See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along
17  * with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef _TERRASERVER_MAP_SOURCE_H
21 #define _TERRASERVER_MAP_SOURCE_H
22
23 #include "vikcoord.h"
24 #include "mapcoord.h"
25 #include "vikmapsourcedefault.h"
26
27 G_BEGIN_DECLS
28
29 #define TERRASERVER_TYPE_MAP_SOURCE             (terraserver_map_source_get_type ())
30 #define TERRASERVER_MAP_SOURCE(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), TERRASERVER_TYPE_MAP_SOURCE, TerraserverMapSource))
31 #define TERRASERVER_MAP_SOURCE_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), TERRASERVER_TYPE_MAP_SOURCE, TerraserverMapSourceClass))
32 #define TERRASERVER_IS_MAP_SOURCE(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TERRASERVER_TYPE_MAP_SOURCE))
33 #define TERRASERVER_IS_MAP_SOURCE_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), TERRASERVER_TYPE_MAP_SOURCE))
34 #define TERRASERVER_MAP_SOURCE_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), TERRASERVER_TYPE_MAP_SOURCE, TerraserverMapSourceClass))
35
36 typedef struct _TerraserverMapSourceClass TerraserverMapSourceClass;
37 typedef struct _TerraserverMapSource TerraserverMapSource;
38
39 struct _TerraserverMapSourceClass
40 {
41         VikMapSourceDefaultClass parent_class;
42 };
43
44 struct _TerraserverMapSource
45 {
46         VikMapSourceDefault parent_instance;
47 };
48
49 GType terraserver_map_source_get_type (void) G_GNUC_CONST;
50
51 TerraserverMapSource * terraserver_map_source_new_with_id (guint16 id, const char *label, int type);
52
53 G_END_DECLS
54
55 #endif /* _TERRASERVER_MAP_SOURCE_H_ */