Files Classes Functions Hierarchy
00001 #ifndef OPENWINDOWRESOURCE_H 00002 #define OPENWINDOWRESOURCE_H 00003 00004 #include <cassert> 00005 using namespace std; 00006 00007 00008 /* Open a glut window for graphics output. */ 00009 class openwindowresource 00010 { 00011 openwindowresource() { assert(false); } 00012 00013 unsigned int wx; 00014 unsigned int wy; 00015 public: 00016 00017 openwindowresource(int argc, char** & argv); 00018 ~openwindowresource(); 00019 }; 00020 00021 #endif 00022
1.5.8