AlbumShaper  1.0a3
xmlTools.h
Go to the documentation of this file.
1 //==============================================
2 // copyright : (C) 2003-2005 by Will Stokes
3 //==============================================
4 // This program is free software; you can redistribute it
5 // and/or modify it under the terms of the GNU General
6 // Public License as published by the Free Software
7 // Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //==============================================
10 
11 #ifndef BACKEND_TOOLS_XMLTOOLS_H
12 #define BACKEND_TOOLS_XMLTOOLS_H
13 
14 //--------------------
15 //forward declarations
16 //--------------------
17 class QString;
18 
20 QString fixXMLString( QString text );
21 
22 //create html pages using specified xml input source and selected theme
23 void transformXMLtoHTML( QString outputPath, QString theme, bool smallWebExport );
24 
25 //update xml file
26 void updateXML( QString inputPath );
27 
28 #endif //BACKEND_TOOLS_XMLTOOLS_H
void transformXMLtoHTML(QString outputPath, QString theme, bool smallWebExport)
Definition: xmlTools.cpp:50
void updateXML(QString inputPath)
Definition: xmlTools.cpp:90
QString fixXMLString(QString text)
Fix strings before exporting to XML such that & becomes &, etc...
Definition: xmlTools.cpp:36