mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-05 19:42:08 +02:00
20 lines
399 B
C++
20 lines
399 B
C++
#ifndef _BMW_I3_HTML_H
|
|
#define _BMW_I3_HTML_H
|
|
|
|
#include "../../src/devboard/webserver/BatteryHtmlRenderer.h"
|
|
#include "../datalayer/datalayer.h"
|
|
#include "../datalayer/datalayer_extended.h"
|
|
|
|
class BmwI3Battery;
|
|
|
|
class BmwI3HtmlRenderer : public BatteryHtmlRenderer {
|
|
private:
|
|
BmwI3Battery& batt;
|
|
|
|
public:
|
|
BmwI3HtmlRenderer(BmwI3Battery& b) : batt(b) {}
|
|
|
|
String get_status_html();
|
|
};
|
|
|
|
#endif
|