First page
Back
Continue
Last page
Graphics
main.cc
int main (int argc, char* argv[])
{
Gtk::Main kit(argc, argv);
HelloWorld helloworld;
kit.run(helloworld);
//Shows the window and returns when it is closed.
return 0;
}