Update real_time_clock.h

This commit is contained in:
Rebbe Pod 2024-08-27 19:17:32 -04:00 committed by GitHub
parent 34cce0e920
commit 21ed68fb18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,6 +36,7 @@ class RealTimeClock : public PollingComponent {
time_t timestamp_now() { return ::time(nullptr); }
void call_setup() override;
void apply_timezone_();
void add_on_time_sync_callback(std::function<void()> callback) {
this->time_sync_callback_.add(std::move(callback));
@ -46,7 +47,6 @@ class RealTimeClock : public PollingComponent {
void synchronize_epoch_(uint32_t epoch);
std::string timezone_{};
void apply_timezone_();
CallbackManager<void()> time_sync_callback_;
};