//to compile, type:
//g++ -g -Wall `pkg-config --cflags --libs gtkmm-2.4` -o helloworld helloworld.cc
#include <gtkmm.h>

using namespace Glib ;
using namespace Gtk ;

int
main (int argc, char **argv)
{
    //initialize the gtk machinery
    Main init (argc, argv) ;

    //create a window
    Window w;

    //create a label with the text
    Label l ("Hey hey world !") ;

    //add the label to the window
    w.add (l) ;

    //make sure the window will show its content
    w.show_all () ;

    //run the everything !
    Main::run (w) ;

    return 0 ;
}

