gSAFE
1.3.8
|
#include <xmlolib.h>
Public Member Functions | |
HExcelXmlGenerator (void) | |
~HExcelXmlGenerator (void) | |
void | generate (HBase *d, QTextStream *s, QString params="") |
void | generateToFile (HBase *d, QString filename, QString params="") |
QString | generateToString (HBase *d, QString params="") |
This class can generate an Excel 2003 XML table output from a HPlainDataMatrix/HList/HTable objects.
HExcelXmlGenerator::HExcelXmlGenerator | ( | void | ) |
Creates a HExcelXmlGenerator object
Definition at line 19 of file xmlolib.cpp.
HExcelXmlGenerator::~HExcelXmlGenerator | ( | void | ) |
Destructor
Definition at line 24 of file xmlolib.cpp.
void HExcelXmlGenerator::generate | ( | HBase * | d, |
QTextStream * | s, | ||
QString | params = "" |
||
) |
Generate the Excel 2003 Xml table output from the HPlainDataMatrix/HList/HTable and the output is written to the "s" stream.
d | the HTable/HList/HPlainDataMatrix class which holds the data to export |
s | the Output strem to the exported xml data |
params | you can set some parameter in this text. It can contains:
|
Definition at line 29 of file xmlolib.cpp.
void HExcelXmlGenerator::generateToFile | ( | HBase * | d, |
QString | filename, | ||
QString | params = "" |
||
) |
Generates the output to a file. (It calls the generate() )
Definition at line 332 of file xmlolib.cpp.
QString HExcelXmlGenerator::generateToString | ( | HBase * | d, |
QString | params = "" |
||
) |
Generates the output to QString. (It calls the generate() )
Definition at line 323 of file xmlolib.cpp.