#ifndef IMPLEMENTATIONENDPOINT_H #define IMPLEMENTATIONENDPOINT_H #include #include class ImplementationEndpoint : public Endpoint { protected: rBootHttpUpdate* otaUpdater = 0; public: // Use empty endpoint type to just keep it unpublished ImplementationEndpoint() : Endpoint("") {} EndpointResult onValue(String property, String value); void otaUpdateCallback(rBootHttpUpdate& updater, bool result); void startOTA(); }; #endif