]> git.street.me.uk Git - andy/viking.git/blobdiff - src/vikmapsourcedefault.h
[QA] Use correct type in sizeof function for memory allocation.
[andy/viking.git] / src / vikmapsourcedefault.h
index 2143fe3884bb01404ec11eed463f8f447d8e44a1..d380e0f93094a5e14c9d49fecb58f2c37c7cb17a 100644 (file)
@@ -1,11 +1,11 @@
 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
 /*
  * viking
- * Copyright (C) Guilhem Bonnefille 2009 <guilhem.bonnefille@gmail.com>
+ * Copyright (C) 2009, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
  * 
  * viking is free software: you can redistribute it and/or modify it
  * under the terms of the GNU General Public License as published by the
- * Free Software Foundation, either version 3 of the License, or
+ * Free Software Foundation, either version 2 of the License, or
  * (at your option) any later version.
  * 
  * viking is distributed in the hope that it will be useful, but
@@ -23,6 +23,7 @@
 #include <glib-object.h>
 
 #include "vikmapsource.h"
+#include "download.h"
 
 G_BEGIN_DECLS
 
@@ -39,6 +40,10 @@ typedef struct _VikMapSourceDefault VikMapSourceDefault;
 struct _VikMapSourceDefaultClass
 {
        VikMapSourceClass parent_class;
+
+       gchar * (*get_uri) ( VikMapSourceDefault *self, MapCoord *src );
+       gchar * (*get_hostname) ( VikMapSourceDefault *self );
+       DownloadMapOptions * (*get_download_options) ( VikMapSourceDefault *self );
 };
 
 struct _VikMapSourceDefault
@@ -47,6 +52,9 @@ struct _VikMapSourceDefault
 };
 
 GType vik_map_source_default_get_type (void) G_GNUC_CONST;
+gchar * vik_map_source_default_get_uri( VikMapSourceDefault *self, MapCoord *src );
+gchar * vik_map_source_default_get_hostname( VikMapSourceDefault *self );
+DownloadMapOptions * vik_map_source_default_get_download_options( VikMapSourceDefault *self );
 
 G_END_DECLS