author | jhilmer |
Mon Aug 01 20:45:55 2005 +0000 (2005-08-01) | |
changeset 145 | 0683c8e87fac |
parent 0 | 7a96bd401351 |
child 163 | 30b22f7bd009 |
permissions | -rw-r--r-- |
1 #ifndef EXPORTS_H
2 #define EXPORTS_H
4 #include <qdir.h>
5 #include <qstring.h>
6 #include <iostream>
8 #include "mapcenterobj.h"
10 using namespace std;
12 /////////////////////////////////////////////////////////////////////////////
13 class Export
14 {
15 public:
16 Export();
17 void setPath(const QString &);
18 void setMapCenter (MapCenterObj*);
19 void setIndentPerDepth (QString);
20 void exportMap();
21 protected:
22 QString getSectionString (BranchObj*);
24 private:
25 QDir outdir;
26 QString filepath;
27 MapCenterObj *mapCenter;
28 QString indentPerDepth;
29 };
31 #endif