author | insilmaril |
Tue Jan 03 09:44:41 2006 +0000 (2006-01-03) | |
changeset 167 | f7efd8c7c407 |
parent 131 | 16b250a57c17 |
child 171 | a98a07994eed |
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 protected:
21 QString getSectionString (BranchObj*);
22 public:
23 void exportMap();
24 void exportLaTeX();
25 void exportOOPresentation();
27 private:
28 QDir outdir;
29 QString filepath;
30 MapCenterObj *mapCenter;
31 QString indentPerDepth;
32 };
34 #endif