#include <Expressions.h>
Public Types | |
typedef ActON | ArgType |
typedef Value | RetType |
Public Member Functions | |
ExprLiteral (const RetType &val) | |
RetType | operator() (const ArgType &) const |
Private Attributes | |
RetType | mVal |
Definition at line 50 of file Expressions.h.
typedef ActON reco::ExprLiteral< Value, ActON >::ArgType |
Definition at line 54 of file Expressions.h.
typedef Value reco::ExprLiteral< Value, ActON >::RetType |
Definition at line 53 of file Expressions.h.
reco::ExprLiteral< Value, ActON >::ExprLiteral | ( | const RetType & | val | ) | [inline] |
Definition at line 56 of file Expressions.h.
References reco::ExprLiteral< Value, ActON >::mVal.
{ mVal = val; }
RetType reco::ExprLiteral< Value, ActON >::operator() | ( | const ArgType & | ) | const [inline] |
Definition at line 59 of file Expressions.h.
References reco::ExprLiteral< Value, ActON >::mVal.
{ return mVal; }
RetType reco::ExprLiteral< Value, ActON >::mVal [private] |
Definition at line 63 of file Expressions.h.
Referenced by reco::ExprLiteral< Value, ActON >::ExprLiteral(), and reco::ExprLiteral< Value, ActON >::operator()().