branchitem.h
changeset 747 008e72977ab8
child 749 9ff332964015
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/branchitem.h	Thu Mar 26 07:50:32 2009 +0000
     1.3 @@ -0,0 +1,18 @@
     1.4 +#ifndef BRANCHITEM_H
     1.5 +#define BRANCHITEM_H
     1.6 +
     1.7 +#include "treeitem.h"
     1.8 +
     1.9 +class QString;
    1.10 +
    1.11 +class BranchItem:public TreeItem
    1.12 +{
    1.13 +public:
    1.14 +    BranchItem(const QList<QVariant> &data, TreeItem *parent = 0);
    1.15 +    ~BranchItem();
    1.16 +
    1.17 +	QString saveToDir (const QString &tmpdir,const QString &prefix, const QPointF& offset);
    1.18 +
    1.19 +};
    1.20 +
    1.21 +#endif