mapcenteritem.h
author insilmaril
Tue, 07 Apr 2009 16:15:53 +0000
changeset 753 25a77484ec72
parent 749 9ff332964015
child 756 a8a5c7288f57
permissions -rw-r--r--
more work on screwing up the data structures
     1 #ifndef MAPCENTERITEM_H
     2 #define MAPCENTERITEM_H
     3 
     4 #include "branchitem.h"
     5 
     6 
     7 class MapCenterItem:public BranchItem
     8 {
     9 public:
    10     MapCenterItem(const QList<QVariant> &data, TreeItem *parent = 0);
    11     ~MapCenterItem();
    12 
    13 	QString saveToDir (const QString &tmpdir,const QString &prefix, const QPointF& offset);
    14 };
    15 
    16 #endif