Searched defs:BoundValueRef (Results 1 – 1 of 1) sorted by relevance
9043 struct BoundValueRef : BoundValueRefBase { struct9044 T &m_ref;9046 explicit BoundValueRef( T &ref ) : m_ref( ref ) {} in BoundValueRef() argument9048 auto setValue( std::string const &arg ) -> ParserResult override { in setValue()9054 struct BoundValueRef<std::vector<T>> : BoundValueRefBase { struct9055 std::vector<T> &m_ref;9057 explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {} in BoundValueRef() argument9059 auto isContainer() const -> bool override { return true; } in isContainer()9061 auto setValue( std::string const &arg ) -> ParserResult override { in setValue()