X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fpoint.hh;h=edccbe1a7f44fd7d82398da3dcfb41dfffee608e;hb=30a23b645083b17736cb942e1452f06aad680111;hp=425cb2185b325633e9cdf7f6df90e17ae3f337df;hpb=8693dd95a2cdd45a5b0668ea2df1e4d20e238ee8;p=chaz%2Fopenbox diff --git a/otk/point.hh b/otk/point.hh index 425cb218..edccbe1a 100644 --- a/otk/point.hh +++ b/otk/point.hh @@ -14,7 +14,7 @@ private: //! The x value int _x; //! The y value - int _y; + int _y; public: //! Constructs a new Point with 0,0 values @@ -25,12 +25,15 @@ public: //! Changes the x value to the new value specified void setX(int x) { _x = x; } //! Returns the x value - void x() const { return _x; } + int x() const { return _x; } //! Changes the y value to the new value specified void setY(int x) { _x = x; } //! Returns the y value - void y() const { return _x; } + int y() const { return _x; } + + //! Changes the x and y values + void setPoint(int x, int y) { _x = x; _y = y; } }; }