X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDimension.h;h=bd8f10d8f259c64db33737f9f6acfe7ef6f19b60;hb=449c766e03d94ddf6c823cfcae845f76f83c0e1c;hp=eefd76419aa31d5569fe3b73941b72cf69f76feb;hpb=f630be890494c849981e4fb52ea4740506e92bed;p=lyx.git diff --git a/src/Dimension.h b/src/Dimension.h index eefd76419a..bd8f10d8f2 100644 --- a/src/Dimension.h +++ b/src/Dimension.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -77,6 +77,16 @@ bool operator!=(Dimension const & a, Dimension const & b) return a.wid != b.wid || a.asc != b.asc || a.des != b.des ; } +class Point { +public: + Point() + : x_(0), y_(0) + {} + + Point(int x, int y); + + int x_, y_; +}; } // namespace lyx