00001 #ifndef INCLUDED_DEMONSTRATION 00002 #define INCLUDED_DEMONSTRATION 00003 00004 #ifndef INCLUDED_POLYGON 00005 #include "polygon.h" 00006 #endif 00007 00008 class Demonstration{ 00009 public: 00010 Polygon *list; 00011 void (Demonstration::*action_demo)(); 00012 00013 Demonstration(); 00014 //~Demonstration(); 00015 void test_init(); 00016 void test_play(); 00017 void test_end(); 00018 }; 00019 00020 #endif