]> Pileus Git - grits/blobdiff - src/plugins/srtm.h
Update copyright and email address
[grits] / src / plugins / srtm.h
index 895378890c8cece3cfd1239d4b9edb8d938a338a..8755c886ab7c4c1d0b385950f728c684f8fcc583 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
+ * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.com>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -34,10 +34,11 @@ struct _GisPluginSrtm {
        GObject parent_instance;
 
        /* instance members */
-       GtkToggleButton *button;
-       guint            rotate_id;
-       float            rotation;
-       GisOpenGL       *opengl;
+       GisViewer *viewer;
+       GisTile   *tiles;
+       GisWms    *wms;
+       GMutex    *mutex;
+       gulong     sigid;
 };
 
 struct _GisPluginSrtmClass {
@@ -47,6 +48,6 @@ struct _GisPluginSrtmClass {
 GType gis_plugin_srtm_get_type();
 
 /* Methods */
-GisPluginSrtm *gis_plugin_srtm_new(GisWorld *world, GisView *view, GisOpenGL *opengl);
+GisPluginSrtm *gis_plugin_srtm_new(GisViewer *viewer);
 
 #endif