Home
last modified time | relevance | path

Searched defs:BoundValueRef (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp9043 struct BoundValueRef : BoundValueRefBase { struct
9044 T &m_ref;
9046 explicit BoundValueRef( T &ref ) : m_ref( ref ) {} in BoundValueRef() argument
9048 auto setValue( std::string const &arg ) -> ParserResult override { in setValue()
9054 struct BoundValueRef<std::vector<T>> : BoundValueRefBase { struct
9055 std::vector<T> &m_ref;
9057 explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {} in BoundValueRef() argument
9059 auto isContainer() const -> bool override { return true; } in isContainer()
9061 auto setValue( std::string const &arg ) -> ParserResult override { in setValue()