lyx_mirror/src/Dimension.cpp
Georg Baum 923ab0734d Move code where it belongs
It is declared in Dimension.h, so the implementation should be in
Dimension.cpp.
2014-05-19 22:07:04 +02:00

38 lines
690 B
C++

/**
* \file Dimension.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "Dimension.h"
#include "support/lassert.h"
namespace lyx {
void Dimension::operator+=(Dimension const & dim)
{
if (asc < dim.asc)
asc = dim.asc;
if (des < dim.des)
des = dim.des;
wid += dim.wid;
}
Point::Point(int x, int y) : x_(x), y_(y)
{
LASSERT(x > -1000000, x = -1000000);
LASSERT(x < 1000000, x = 1000000);
LASSERT(y > -1000000, y = -1000000);
LASSERT(y < 1000000, y = 1000000);
}
} // namespace lyx