Remove Debug Code
[cs356-p1-elevator.git] / elevatorgui.cpp
index f9d03a1..630a855 100644 (file)
@@ -30,8 +30,6 @@ ElevatorGUI::ElevatorGUI (int floors, int elevators)
        /* Fill in all of the ElevatorDoors and CallButtons */
        for (f_attach=0, f=floors-1; f>=0; --f, ++f_attach)
        {
-               std::cout << "at floor: " << f << std::endl;
-
                /* Create and attach the VBox */
                Gtk::VBox *box = new Gtk::VBox ();
                table_.attach (*box, 0, 1, f_attach, f_attach+1);
@@ -74,7 +72,6 @@ ElevatorGUI::ElevatorGUI (int floors, int elevators)
 
                for (e=0; e<elevators; ++e) // run left-to-right
                {
-                       std::cout << "Attaching ElevatorDoor (e=" << e << ", f=" << f << ")" << std::endl;
                        ElevatorDoor *door = new ElevatorDoor (e, f);
                        elevator_doors_.push_back (door);
                        table_.attach (*door, e+1, e+2, f_attach, f_attach+1);