Blame | Last modification | View Log | RSS feed
#include <gtkmm/main.h>#include "elevator_window.h"int main (int argc, char *argv[]){// Set up the controllerController c(10, 5);// Start GTKGtk::Main kit (argc, argv);// Create the windowElevator_Window window;// Set associationswindow.set_controller (&c);c.set_gui (&window);// Start the backendc.start_all_elevators ();// Start the GUIGtk::Main::run (window);return 0;}