Added initial implementation of Template.

This commit is contained in:
Jim Evins
2013-11-02 17:10:49 -04:00
parent be55bebc50
commit 262932a4c7
16 changed files with 416 additions and 60 deletions
+8 -1
View File
@@ -38,13 +38,20 @@ namespace libglabels
{
}
FrameEllipse( const FrameEllipse &other )
: mW(other.mW), mH(other.mH), mWaste(other.mWaste), Frame(other)
{
}
Frame *dup() const { return new FrameEllipse( *this ); }
inline double waste() const { return mWaste; }
double w() const { return mW; }
double h() const { return mH; }
const QString &sizeDescription( Units *units );
bool isSimilar( Frame *b ) const;
bool isSimilarTo( Frame *other ) const;
private: