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
+9 -9
View File
@@ -28,16 +28,12 @@ namespace libglabels
class Point
{
public:
Point() : mX(0), mY(0)
{
}
Point();
Point( double x, double y );
Point( double x, double y ) : mX(x), mY(y)
{
}
inline double x() const { return mX; }
inline double y() const { return mY; }
double x() const;
double y() const;
bool operator<( const Point &other ) const;
@@ -49,4 +45,8 @@ namespace libglabels
}
#include "Point.inl"
#endif // libglabels_Point_h