main.cpp 232 B

12345678910111213
  1. #include "helloworld.h"
  2. #include <gtkmm.h>
  3. int main(int argc, char* argv[])
  4. {
  5. Gtk::Main kit(argc, argv);
  6. HelloWorld helloworld;
  7. // Shows the window and returns when it is closed.
  8. Gtk::Main::run(helloworld);
  9. return 0;
  10. }