Add comparison to report console
This commit is contained in:
@@ -7,17 +7,18 @@
|
||||
|
||||
namespace platform {
|
||||
using namespace std;
|
||||
const int MAXL = 132;
|
||||
const int MAXL = 133;
|
||||
class ReportConsole : public ReportBase {
|
||||
public:
|
||||
explicit ReportConsole(json data_, int index = -1) : ReportBase(data_), selectedIndex(index) {};
|
||||
virtual ~ReportConsole() = default;
|
||||
private:
|
||||
int selectedIndex;
|
||||
string headerLine(const string& text);
|
||||
string headerLine(const string& text, int utf);
|
||||
void header() override;
|
||||
void body() override;
|
||||
void footer(double totalScore);
|
||||
void showSummary();
|
||||
};
|
||||
};
|
||||
#endif
|
Reference in New Issue
Block a user