Added initial Markup, Frame, FrameRect and StrUtil implementations.

This commit is contained in:
Jim Evins
2013-10-29 22:39:07 -04:00
parent 336d892983
commit 5f1c2ec3e9
11 changed files with 600 additions and 6 deletions
+5 -1
View File
@@ -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: