exports.h
changeset 183 97e0bd468439
parent 171 a98a07994eed
child 194 de97201180ea
     1.1 --- a/exports.h	Tue Jan 24 15:09:48 2006 +0000
     1.2 +++ b/exports.h	Tue Jan 24 15:09:48 2006 +0000
     1.3 @@ -10,7 +10,7 @@
     1.4  
     1.5  //using namespace std;
     1.6  
     1.7 -/////////////////////////////////////////////////////////////////////////////
     1.8 +///////////////////////////////////////////////////////////////////////
     1.9  
    1.10  class ExportBase
    1.11  {
    1.12 @@ -31,25 +31,27 @@
    1.13  	QString	indentPerDepth;
    1.14  };
    1.15  
    1.16 -/////////////////////////////////////////////////////////////////////////////
    1.17 +///////////////////////////////////////////////////////////////////////
    1.18  class ExportLaTeX:public ExportBase
    1.19  {
    1.20  public:
    1.21  	void exportLaTeX();
    1.22  };	
    1.23  
    1.24 -/////////////////////////////////////////////////////////////////////////////
    1.25 +///////////////////////////////////////////////////////////////////////
    1.26  class ExportOO:public ExportBase
    1.27  {
    1.28  public:
    1.29  	ExportOO();
    1.30  	~ExportOO();
    1.31  	void exportPresentation();
    1.32 +	void setConfigFile (const QString &);
    1.33  private:
    1.34  	QString buildList (BranchObj*);
    1.35 -	QString walkPages (BranchObj*);
    1.36  	QDir tmpDir;
    1.37  	bool useChapters;
    1.38 +	QString configFile;
    1.39 +	QString configDir;
    1.40  	QString templateDir;
    1.41  	QString content;
    1.42  	QString contentTemplate;