diff -r ee6b0f3a4c2f -r 008e72977ab8 branchitem.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/branchitem.h Thu Mar 26 07:50:32 2009 +0000 @@ -0,0 +1,18 @@ +#ifndef BRANCHITEM_H +#define BRANCHITEM_H + +#include "treeitem.h" + +class QString; + +class BranchItem:public TreeItem +{ +public: + BranchItem(const QList &data, TreeItem *parent = 0); + ~BranchItem(); + + QString saveToDir (const QString &tmpdir,const QString &prefix, const QPointF& offset); + +}; + +#endif