X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/1f78e182e7eaf305c3a10d2e145dbcc994d5e862..12b68116138027b0004412a3a058694a5102885c:/src/vikmapsourcedefault.h?ds=sidebyside diff --git a/src/vikmapsourcedefault.h b/src/vikmapsourcedefault.h index 2143fe38..d380e0f9 100644 --- a/src/vikmapsourcedefault.h +++ b/src/vikmapsourcedefault.h @@ -1,11 +1,11 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */ /* * viking - * Copyright (C) Guilhem Bonnefille 2009 + * Copyright (C) 2009, Guilhem Bonnefille * * 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 #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