Searched defs:BoundValueRef (Results 1 – 1 of 1) sorted by relevance
9130 struct BoundValueRef : BoundValueRefBase { struct9131 T &m_ref;9133 explicit BoundValueRef( T &ref ) : m_ref( ref ) {} in BoundValueRef() argument9135 auto setValue( std::string const &arg ) -> ParserResult override { in setValue()9141 struct BoundValueRef<std::vector<T>> : BoundValueRefBase { struct9142 std::vector<T> &m_ref;9144 explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {} in BoundValueRef() function9146 auto isContainer() const -> bool override { return true; } in isContainer()9148 auto setValue( std::string const &arg ) -> ParserResult override { in setValue()