Some style cleanup to libglabels.
This commit is contained in:
+9
-9
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user