Memosa-FVM  0.2
FloatVal< T > Struct Template Reference

#include <FloatVarDict.h>

Collaboration diagram for FloatVal< T >:

Public Member Functions

 FloatVal (T constant_)
 
 FloatVal (Field *field_)
 

Public Attributes

constant
 
Fieldfield
 

Detailed Description

template<class T>
struct FloatVal< T >

FloatVal allows specification of any floating point input as either a single number or as a Field. When a Field is specified it must contain Array<T> for any storage site for which the input needs a value.

Definition at line 21 of file FloatVarDict.h.

Constructor & Destructor Documentation

template<class T>
FloatVal< T >::FloatVal ( constant_)
inline

Definition at line 23 of file FloatVarDict.h.

23  :
24  constant(constant_),
25  field(0)
26  {}
Field * field
Definition: FloatVarDict.h:34
template<class T>
FloatVal< T >::FloatVal ( Field field_)
inline

Definition at line 28 of file FloatVarDict.h.

28  :
29  constant(0),
30  field(field_)
31  {}
Field * field
Definition: FloatVarDict.h:34

Member Data Documentation

template<class T>
T FloatVal< T >::constant

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