mirror of
https://github.com/esphome/esphome.git
synced 2025-01-08 22:01:44 +01:00
18 lines
322 B
C++
18 lines
322 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace esphome {
|
|
namespace improv_base {
|
|
|
|
class ImprovBase {
|
|
public:
|
|
void set_next_url(const std::string &next_url) { this->next_url_ = next_url; }
|
|
|
|
protected:
|
|
std::string get_formatted_next_url_();
|
|
std::string next_url_;
|
|
};
|
|
|
|
} // namespace improv_base
|
|
} // namespace esphome
|