exports.h
author insilmaril
Tue, 02 Aug 2005 08:12:14 +0000
changeset 147 40de292411b6
parent 131 16b250a57c17
child 163 30b22f7bd009
permissions -rw-r--r--
Bugfix: Now correct always correct size of heading
     1 #ifndef EXPORTS_H
     2 #define EXPORTS_H
     3 
     4 #include <qdir.h>
     5 #include <qstring.h>
     6 #include <iostream>
     7 
     8 #include "mapcenterobj.h"
     9 
    10 using namespace std;
    11 
    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*);
    23 
    24 private:
    25 	QDir outdir;
    26 	QString filepath;
    27 	MapCenterObj *mapCenter;
    28 	QString	indentPerDepth;
    29 };
    30 
    31 #endif