#include <MethodArgumentSetter.h>
Public Member Functions | |
MethodArgumentSetter (MethodArgumentStack &stack) | |
void | operator() (const char *begin, const char *end) const |
template<typename T > | |
void | operator() (const T &n) const |
Private Attributes | |
MethodArgumentStack & | stack_ |
Definition at line 17 of file MethodArgumentSetter.h.
reco::parser::MethodArgumentSetter::MethodArgumentSetter | ( | MethodArgumentStack & | stack | ) | [inline] |
Definition at line 18 of file MethodArgumentSetter.h.
void reco::parser::MethodArgumentSetter::operator() | ( | const T & | n | ) | const [inline] |
Definition at line 20 of file MethodArgumentSetter.h.
References stack_.
{ stack_.push_back( AnyMethodArgument(n) ); }
void reco::parser::MethodArgumentSetter::operator() | ( | const char * | begin, |
const char * | end | ||
) | const [inline] |
Definition at line 23 of file MethodArgumentSetter.h.
References stack_.
Definition at line 28 of file MethodArgumentSetter.h.
Referenced by operator()().