htmlreporter.h
来自「粗糙集应用软件」· C头文件 代码 · 共 46 行
H
46 行
//-------------------------------------------------------------------
// Author........: Aleksander 豩rn
// Date..........:
// Description...:
// Revisions.....:
//===================================================================
#ifndef __HTMLREPORTER_H__
#define __HTMLREPORTER_H__
#include <copyright.h>
#include <kernel/algorithms/reporter.h>
//-------------------------------------------------------------------
// Class.........: HTMLReporter
// Author........: Aleksander 豩rn
// Date..........:
// Description...: Generates a report in HTML format.
// Revisions.....:
//===================================================================
class HTMLReporter : public Reporter {
protected:
//- Methods inherited from Exporter................................
virtual bool ExportPrologue(ofstream &stream, const Structure &structure) const;
virtual bool ExportData(ofstream &stream, const Structure &structure) const;
virtual bool ExportEpilogue(ofstream &stream, const Structure &structure) const;
//- Report methods..................................................
virtual bool ExportTree(ofstream &stream, const Structure &structure, const String &label) const;
virtual bool ExportData(ofstream &stream, const Structure &structure, const String &label) const;
public:
//- Constructors/destructor........................................
HTMLReporter();
virtual ~HTMLReporter();
//- Methods inherited from Identifier..............................
DECLAREIDMETHODS()
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?