src/work/peter/gtk-mm-helloworld.cc
author marci
Sat, 05 Mar 2005 19:04:45 +0000
changeset 1197 a2cd33e6f61c
permissions -rw-r--r--
let's remember: the boss said that we have to test even the non-working codes
     1 #include <gtkmm.h>
     2 
     3 int main(int argc, char *argv[])
     4 {
     5     Gtk::Main kit(argc, argv);
     6 
     7     Gtk::Window window;
     8 
     9     Gtk::Main::run(window);
    10     
    11     return 0;
    12 }