mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 20:53:26 +02:00
44b68f140e
Co-authored-by: Maurice Makaay <mmakaay1@xs4all.net>
12 lines
309 B
C++
12 lines
309 B
C++
#include "select_traits.h"
|
|
|
|
namespace esphome {
|
|
namespace select {
|
|
|
|
void SelectTraits::set_options(std::vector<std::string> options) { this->options_ = std::move(options); }
|
|
|
|
std::vector<std::string> SelectTraits::get_options() const { return this->options_; }
|
|
|
|
} // namespace select
|
|
} // namespace esphome
|