exports.h
author insilmaril
Thu, 22 Sep 2005 12:56:05 +0000
changeset 165 4244bcd9e6ea
parent 163 30b22f7bd009
child 171 a98a07994eed
permissions -rw-r--r--
fixed problem where note got lost by copying a branch
     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 protected:  
    21 	QString getSectionString (BranchObj*);
    22 public:	
    23 	void exportMap();
    24 	void exportLaTeX();
    25 	void exportOOPresentation();
    26 
    27 private:
    28 	QDir outdir;
    29 	QString filepath;
    30 	MapCenterObj *mapCenter;
    31 	QString	indentPerDepth;
    32 };
    33 
    34 #endif