$extrastylesheet
#include <parameter_accessor.h>
Public Member Functions | |
| ConstParameterProxy (const ParameterAccessor< T > &accessor) | |
| operator T () const | |
| T | get () const |
Private Attributes | |
| const ParameterAccessor< T > & | _accessor |
Definition at line 141 of file parameter_accessor.h.
| libMesh::ConstParameterProxy< T >::ConstParameterProxy | ( | const ParameterAccessor< T > & | accessor | ) | [inline] |
Constructor: which parameter are we a proxy for?
Definition at line 147 of file parameter_accessor.h.
: _accessor(accessor) {}
| T libMesh::ConstParameterProxy< T >::get | ( | ) | const [inline] |
Getter: get the value of the parameter we access.
Definition at line 158 of file parameter_accessor.h.
References libMesh::ConstParameterProxy< T >::_accessor.
Referenced by libMesh::ParameterProxy< T >::operator=().
{ return _accessor.get(); }
| libMesh::ConstParameterProxy< T >::operator T | ( | ) | const [inline] |
Getter: get the value of the parameter we access.
Definition at line 153 of file parameter_accessor.h.
References libMesh::ConstParameterProxy< T >::_accessor.
{ return _accessor.get(); }
const ParameterAccessor<T>& libMesh::ConstParameterProxy< T >::_accessor [private] |
Definition at line 161 of file parameter_accessor.h.
Referenced by libMesh::ConstParameterProxy< T >::get(), and libMesh::ConstParameterProxy< T >::operator T().