checkpoint, switching machine. on the way to chunked response

This commit is contained in:
Torsten Ruger
2021-06-30 12:20:20 +03:00
parent e28df2e41a
commit d2eee55953
5 changed files with 71 additions and 23 deletions

View File

@ -28,6 +28,9 @@ protected:
void add_month(int from ) ;
String one_week( float[] );
String one_month( float[] );
public:
float week_in[WEEK];
float week_out[WEEK];
@ -38,6 +41,9 @@ public:
void add_week(float in , float out) ;
void add(float in , float out) ;
String week_data();
String month_data();
};
extern Collector collector;