35 void open(); |
35 void open(); |
36 void close(); |
36 void close(); |
37 |
37 |
38 void h1(const std::string& heading); |
38 void h1(const std::string& heading); |
39 void h2(const std::string& heading); |
39 void h2(const std::string& heading); |
40 void table_begin(int year); |
40 void table_begin(std::chrono::year y); |
41 void table_end(); |
41 void table_end(); |
42 void row_begin(unsigned int weekday); |
42 void row_begin(unsigned int row); |
43 void row_end(); |
43 void row_end(); |
44 void cell_out_of_range(); |
44 void cell_out_of_range(); |
45 void cell(std::chrono::year_month_day ymd, unsigned commits); |
45 void cell(std::chrono::year_month_day ymd, unsigned commits); |
46 |
46 |
47 } |
47 } |