Added initial Markup, Frame, FrameRect and StrUtil implementations.
This commit is contained in:
+5
-1
@@ -28,6 +28,10 @@ namespace libglabels
|
||||
class Point
|
||||
{
|
||||
public:
|
||||
Point() : mX(0), mY(0)
|
||||
{
|
||||
}
|
||||
|
||||
Point( double x, double y ) : mX(x), mY(y)
|
||||
{
|
||||
}
|
||||
@@ -35,7 +39,7 @@ namespace libglabels
|
||||
inline double x() const { return mX; }
|
||||
inline double y() const { return mY; }
|
||||
|
||||
int compare_to( const Point &b );
|
||||
static int compare( const Point &a, const Point &b );
|
||||
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user