#include <gtkmm.h> #include "ui.hh" int main(int argc, char* argv[]) { auto app = Gtk::Application::create("org.gtkmm.example"); //Shows the window and returns when it is closed. return app->make_window_and_run<Ui>(argc, argv, app); }