$extrastylesheet
libMesh::ConstParameterProxy< T > Class Template Reference

#include <parameter_accessor.h>

List of all members.

Public Member Functions

 ConstParameterProxy (const ParameterAccessor< T > &accessor)
 operator T () const
get () const

Private Attributes

const ParameterAccessor< T > & _accessor

Detailed Description

template<typename T = Number>
class libMesh::ConstParameterProxy< T >

Definition at line 141 of file parameter_accessor.h.


Constructor & Destructor Documentation

template<typename T = Number>
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) {}

Member Function Documentation

template<typename T = Number>
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(); }
template<typename T = Number>
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(); }

Member Data Documentation

template<typename T = Number>
const ParameterAccessor<T>& libMesh::ConstParameterProxy< T >::_accessor [private]

The documentation for this class was generated from the following file: