BUGFIX: Elevators did not handle Requests in the correct order
[cs356-p1-elevator.git] / direction.hpp
1 /*
2  * CS356 Project 01 -- Elevator Simulator
3  *
4  * Direction Enumeration
5  */
6
7 #ifndef DIRECTION_HPP
8 #define DIRECTION_HPP
9
10 typedef enum { IDLE, UP, DOWN, ALL } Direction;
11
12 #endif /* DIRECTION_HPP */
13
14 /* vim: set ts=4 sts=4 sw=4 noexpandtab textwidth=112: */