Definition at line 743 of file yaml_decoders.cc.
◆ decode()
Definition at line 744 of file yaml_decoders.cc.
745 {
746 if (node["link"]) {
747 if (node["link"].IsMap())
748 rhs.link = node["link"].as<decltype(rhs.link)>();
749 else
750 rhs.link.emplace(".", node["link"].as<std::string>());
751 }
752
753 if (node["tooltip"]) {
754 if (node["tooltip"].IsMap())
755 rhs.tooltip = node["tooltip"].as<decltype(rhs.tooltip)>();
756 else
757 rhs.tooltip.emplace(".", node["tooltip"].as<std::string>());
758 }
759
760 return true;
761 }
The documentation for this struct was generated from the following file: