00001 //------------------------------------------------------------------------ 00002 // 00003 // Joe Kniss 00004 // 6-20-03 00005 // ________ ____ ___ 00006 // | \ / | / / 00007 // +---+ \/ |/ / 00008 // +--+| |\ /| < 00009 // | || | \ / | |\ \ 00010 // | | \/ | | \ \ 00011 // \_____| |__| \__\ 00012 // Copyright 2003 00013 // Joe Michael Kniss 00014 // <<< jmk@cs.utah.edu >>> 00015 // "All Your Base are Belong to Us" 00016 //------------------------------------------------------------------------- 00017 00018 /// TFGL.h 00019 /// simianUI 00020 00021 00022 #ifndef __SIMIAN_UI_TF_GL_DOT_H 00023 #define __SIMIAN_UI_TF_GL_DOT_H 00024 00025 #include <GL/RenderableQGL.h> 00026 00027 class TFGL : public RenderableQGL { 00028 public: 00029 TFGL(QWidget *parent=0, const char *name=0); 00030 virtual ~TFGL(); 00031 00032 protected: 00033 void init(); 00034 00035 }; 00036 00037 00038 00039 #endif 00040 00041