1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-15 06:15:47 +00:00
Files
esphome/esphome/components/select/select_traits.cpp
J. Nick Koston 75550b39f4 compat
2025-10-21 12:23:16 -10:00

12 lines
315 B
C++

#include "select_traits.h"
namespace esphome {
namespace select {
void SelectTraits::set_options(std::initializer_list<std::string> options) { this->options_ = options; }
const FixedVector<std::string> &SelectTraits::get_options() const { return this->options_; }
} // namespace select
} // namespace esphome