exports.h
author insilmaril
Sat, 23 Jul 2005 10:26:30 +0000
changeset 134 6c199971ddb5
parent 131 16b250a57c17
child 163 30b22f7bd009
permissions -rw-r--r--
updated api.*
     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