MOOSE - Multiscale Object Oriented Simulation Environment
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
EpFunc5< T, A1, A2, A3, A4, A5 > Class Template Reference

#include <EpFunc.h>

+ Inheritance diagram for EpFunc5< T, A1, A2, A3, A4, A5 >:
+ Collaboration diagram for EpFunc5< T, A1, A2, A3, A4, A5 >:

Public Member Functions

 EpFunc5 (void(T::*func)(const Eref &, A1, A2, A3, A4, A5))
 
void op (const Eref &e, A1 arg1, A2 arg2, A3 arg3, A4 arg4, A5 arg5) const
 
- Public Member Functions inherited from OpFunc5Base< A1, A2, A3, A4, A5 >
bool checkFinfo (const Finfo *s) const
 
const OpFuncmakeHopFunc (HopIndex hopIndex) const
 
void opBuffer (const Eref &e, double *buf) const
 Executes the OpFunc by converting args. More...
 
string rttiType () const
 
- Public Member Functions inherited from OpFunc
 OpFunc ()
 
unsigned int opIndex () const
 
virtual void opVecBuffer (const Eref &e, double *buf) const
 Executes the OpFunc for all data by converting a vector of args. More...
 
bool setIndex (unsigned int i)
 Used when rebuilding the Fid->OpFunc mapping. More...
 
virtual ~OpFunc ()
 

Private Attributes

void(T::* func_ )(const Eref &e, A1, A2, A3, A4, A5)
 

Additional Inherited Members

- Static Public Member Functions inherited from OpFunc
static const OpFunclookop (unsigned int opIndex)
 
static unsigned int rebuildOpIndex ()
 cleans out the entire Ops vector. Returns size of orig vector. More...
 

Detailed Description

template<class T, class A1, class A2, class A3, class A4, class A5>
class EpFunc5< T, A1, A2, A3, A4, A5 >

Definition at line 130 of file EpFunc.h.

Constructor & Destructor Documentation

template<class T , class A1 , class A2 , class A3 , class A4 , class A5 >
EpFunc5< T, A1, A2, A3, A4, A5 >::EpFunc5 ( void(T::*)(const Eref &, A1, A2, A3, A4, A5)  func)
inline

Definition at line 133 of file EpFunc.h.

134  : func_( func )
135  {;}
void(T::* func_)(const Eref &e, A1, A2, A3, A4, A5)
Definition: EpFunc.h:143

Member Function Documentation

template<class T , class A1 , class A2 , class A3 , class A4 , class A5 >
void EpFunc5< T, A1, A2, A3, A4, A5 >::op ( const Eref e,
A1  arg1,
A2  arg2,
A3  arg3,
A4  arg4,
A5  arg5 
) const
inlinevirtual

Implements OpFunc5Base< A1, A2, A3, A4, A5 >.

Definition at line 137 of file EpFunc.h.

References Eref::data(), and EpFunc5< T, A1, A2, A3, A4, A5 >::func_.

138  {
139  ( reinterpret_cast< T* >( e.data() )->*func_ )(
140  e, arg1, arg2, arg3, arg4, arg5 );
141  }
void(T::* func_)(const Eref &e, A1, A2, A3, A4, A5)
Definition: EpFunc.h:143
char * data() const
Definition: Eref.cpp:41

+ Here is the call graph for this function:

Member Data Documentation

template<class T , class A1 , class A2 , class A3 , class A4 , class A5 >
void( T::* EpFunc5< T, A1, A2, A3, A4, A5 >::func_)(const Eref &e, A1, A2, A3, A4, A5)
private

Definition at line 143 of file EpFunc.h.

Referenced by EpFunc5< T, A1, A2, A3, A4, A5 >::op().


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