mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
44b68f140e
Co-authored-by: Maurice Makaay <mmakaay1@xs4all.net>
11 lines
309 B
C++
11 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
|