Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. using namespace std;
  2.  
  3. class WINDOW
  4. {
  5. protected:
  6. GtkWidget *window;
  7.  
  8. public:
  9. WINDOW();
  10. GtkWidget* get_window();
  11. void set_window(GtkWidget* w);
  12. void set_title(string s);
  13. void show_widget_all();
  14. static void main_loop();
  15. };
  16.  
  17. window = NULL;
  18.  
  19. delete window;
  20. window = NULL;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement