X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbox.C;h=3a3dc9f2ea18dbac9a5f97886cfd918b9e46f177;hb=a9c2dd92df8c538e6ab39bbd136c2da9a0315eb1;hp=41bb8bcfe31b71c34a1fc31f857a669bf7d36d56;hpb=8283e978f8d621041c432b9b88a476bfd567385c;p=lyx.git diff --git a/src/box.C b/src/box.C index 41bb8bcfe3..3a3dc9f2ea 100644 --- a/src/box.C +++ b/src/box.C @@ -8,16 +8,20 @@ // Code moved out of line and out of box.h by Angus (7 Jan 2002) +#include + #include "box.h" #include "support/LOstream.h" using std::ostream; + Box::Box(int x1_, int x2_, int y1_, int y2_) : x1(x1_), x2(x2_), y1(y1_), y2(y2_) {} + bool Box::contained(int x, int y) { return (x1 < x && x2 > x && @@ -28,5 +32,6 @@ bool Box::contained(int x, int y) ostream & operator<<(ostream & o, Box const & b) { return o << "x1,y1: " << b.x1 << "," << b.y1 - << " x2,y2: " << b.x2 << "," << b.y2 << std::endl; + << " x2,y2: " << b.x2 << "," << b.y2 + << std::endl; }