]> Pileus Git - grits/blobdiff - examples/plugin/teapot.h
Update copyright and email address
[grits] / examples / plugin / teapot.h
index 5008e048bde0e38a45fcd531769f99fe4d50d524..a849ef31df53106b79359bf19e5d3d88d5f30b8f 100644 (file)
@@ -1,16 +1,16 @@
 /*
- * 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
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
@@ -34,10 +34,10 @@ struct _GisPluginTeapot {
        GObject parent_instance;
 
        /* instance members */
+       GisViewer       *viewer;
        GtkToggleButton *button;
        guint            rotate_id;
        float            rotation;
-       GisOpenGL       *opengl;
 };
 
 struct _GisPluginTeapotClass {
@@ -47,6 +47,6 @@ struct _GisPluginTeapotClass {
 GType gis_plugin_teapot_get_type();
 
 /* Methods */
-GisPluginTeapot *gis_plugin_teapot_new(GisWorld *world, GisView *view, GisOpenGL *opengl);
+GisPluginTeapot *gis_plugin_teapot_new(GisViewer *viewer, GisPrefs *prefs);
 
 #endif