mirror of
https://github.com/esphome/esphome.git
synced 2025-11-15 06:15:47 +00:00
12 lines
315 B
C++
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
|