Some style cleanup to libglabels.

This commit is contained in:
Jim Evins
2015-08-11 17:18:49 -04:00
parent de8ec9b66a
commit 0ad6caeeca
46 changed files with 1294 additions and 380 deletions
+10
View File
@@ -24,6 +24,16 @@
namespace libglabels
{
Point::Point() : mX(0), mY(0)
{
}
Point::Point( double x, double y ) : mX(x), mY(y)
{
}
bool Point::operator<( const Point &other ) const
{
if ( mY < other.mY )