00001 #ifndef _ascshape_hh_ 00002 #define _ascshape_hh__ 00003 00004 #include "shape.hh" 00005 #include <GL/gl.h> 00006 00007 namespace anoid { 00008 namespace plugin { 00009 00010 class AscShape: public base::Shape { 00011 private: 00012 GLuint display; 00013 public: 00014 virtual void redraw(); 00015 virtual void init(config::Configuration &c); 00016 }; 00017 00018 }; 00019 }; 00020 00021 #endif