[╯°□°]╯︵┻━┻
|
00001 #ifndef PRJ_DISP_H 00002 #define PRJ_DISP_H 00003 00004 #include <iostream> 00005 #include "wx/wxprec.h" 00006 #ifndef WX_PRECOMP 00007 #include "wx/wx.h" 00008 #endif 00009 #include "wx/glcanvas.h" 00010 00011 #include <vector> 00012 00013 00014 using namespace std; 00015 00016 class Disp{ 00017 public: 00018 virtual void disp(vector<bool> options) =0; 00019 virtual ostream& cdisp(ostream&)=0; 00020 }; 00021 00022 #endif //PRJ_DISP_H