Stop inherits from Position
[cs356-p1-elevator.git] / position.hpp
index 76fa6b6..ef94846 100644 (file)
@@ -66,10 +66,14 @@ class Position
                 */
                Position& operator-= (const float rhs);
 
+               bool operator< (const Position& rhs);
+               bool operator> (const Position& rhs);
+
        protected:
-       private:
                int _major;
                int _minor;
+
+       private:
 };
 
 #endif /* POSITION_HPP */