get rid of strings

This commit is contained in:
J. Nick Koston 2023-06-07 09:49:24 -05:00
parent 74206e9c63
commit b42b5f4239
No known key found for this signature in database
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#pragma once
#include "esphome/core/helpers.h"
namespace esphome {
namespace ratgdo {
// Forward declare RATGDOComponent
class RATGDOComponent;
class BedJetClient : public Parented<RATGDOComponent> {
public:
virtual void on_status() = 0;
virtual void on_ratgdo_state(bool is_ready) = 0;
protected:
friend RATGDOComponent;
virtual std::string describe() = 0;
};
} // namespace ratgdo
} // namespace esphome