6 * g++ -Wall -g `pkg-config gtkmm-2.0 --cflags --libs` -o gtkmm_hello \
7 * gtkmm_hello.cpp gtkmm_hello_main.cpp
11 #include <gtkmm/main.h>
12 #include "gtkmm_hello.h"
14 int main (int argc, char *argv[])
16 Gtk::Main kit(argc, argv);
17 HelloWorld helloworld;
18 Gtk::Main::run(helloworld); //Shows the window and returns when it is closed.