Add the hacks to fix disabling of buttons
[cs356-p1-elevator.git] / main.hpp
1 #ifndef MAIN_HPP
2 #define MAIN_HPP
3
4 #include "direction.hpp"
5
6 #include <iostream>
7 #include <gtkmm/main.h>
8
9 void gui_update_position_label (int elevator, float new_position, Direction direction);
10 void gui_unpress_call_button (int floor, Direction direction);
11 void gui_unpress_request_button (int elevator, int floor);
12 void gui_open_door (int elevator, int floor);
13 void gui_close_door (int elevator, int floor);
14
15
16 #endif /* MAIN_HPP */
17
18 /* vim: set ts=4 sts=4 sw=4 noexpandtab textwidth=112: */