lyx_mirror/src/Box.cpp
Abdelrazak Younes 9abb7db468 getting rid of superfluous std:: statements.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22104 a592a061-630c-0410-9148-cb99ea01b6c8
2007-12-12 19:28:07 +00:00

49 lines
782 B
C++

/**
* \file Box.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
// Code moved out of line and out of Box.h by Angus (7 Jan 2002)
#include <config.h>
#include "Box.h"
#include <ostream>
using namespace std;
namespace lyx {
Box::Box()
: x1(0), x2(0), y1(0), y2(0)
{}
Box::Box(int x1_, int x2_, int y1_, int y2_)
: x1(x1_), x2(x2_), y1(y1_), y2(y2_)
{}
bool Box::contains(int x, int y)
{
return (x1 < x && x2 > x && y1 < y && y2 > y);
}
ostream & operator<<(ostream & os, Box const & b)
{
return os << "x1,y1: " << b.x1 << ',' << b.y1
<< " x2,y2: " << b.x2 << ',' << b.y2
<< endl;
}
} // namespace lyx