2 * CS356 Project 01 -- Elevator Simulator
4 * Stop Class Specification
10 #include "position.hpp"
11 #include "direction.hpp"
15 friend std::ostream& operator<< (std::ostream &os, const Stop& rhs);
18 Stop (const Position& position, const Direction& direction);
20 bool operator== (const Stop& rhs) const;
21 bool operator< (const Stop& rhs) const;
22 bool operator> (const Stop& rhs) const;
24 const Direction getDirection () const;
25 const Position getPosition () const;
34 /* vim: set ts=4 sts=4 sw=4 noexpandtab textwidth=112: */