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