branchitem.h
author insilmaril
Thu, 26 Mar 2009 07:50:32 +0000
changeset 747 008e72977ab8
child 749 9ff332964015
permissions -rw-r--r--
Notes work again (to some degree)
     1 #ifndef BRANCHITEM_H
     2 #define BRANCHITEM_H
     3 
     4 #include "treeitem.h"
     5 
     6 class QString;
     7 
     8 class BranchItem:public TreeItem
     9 {
    10 public:
    11     BranchItem(const QList<QVariant> &data, TreeItem *parent = 0);
    12     ~BranchItem();
    13 
    14 	QString saveToDir (const QString &tmpdir,const QString &prefix, const QPointF& offset);
    15 
    16 };
    17 
    18 #endif