Refactor Report class into ReportBase & ReportCons
This commit is contained in:
16
src/Platform/ReportExcel.h
Normal file
16
src/Platform/ReportExcel.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef REPORTEXCEL_H
|
||||
#define REPORTEXCEL_H
|
||||
#include "ReportBase.h"
|
||||
namespace platform {
|
||||
using namespace std;
|
||||
class ReportExcel : public ReportBase{
|
||||
public:
|
||||
explicit ReportExcel(json data_) : ReportBase(data_) {};
|
||||
virtual ~ReportExcel() = default;
|
||||
private:
|
||||
void header() override;
|
||||
void body() override;
|
||||
void footer() override;
|
||||
};
|
||||
};
|
||||
#endif // !REPORTEXCEL_H
|
Reference in New Issue
Block a user