TTTT Analysis  0.1
Public Member Functions | Private Member Functions | Private Attributes | List of all members
filval::ObservedValue< T > Class Template Reference

A generic, observed, value. More...

#include <value.hpp>

Inheritance diagram for filval::ObservedValue< T >:
Inheritance graph
[legend]
Collaboration diagram for filval::ObservedValue< T >:
Collaboration graph
[legend]

Public Member Functions

 ObservedValue (const std::string &name, T *val_ref)
 
T & get_value ()
 Calculate, if necessary, and return the value held by this object.
 
- Public Member Functions inherited from filval::Value< T >
 Value (const std::string &name)
 
- Public Member Functions inherited from filval::GenValue
 GenValue (const std::string &name)
 
const std::string & get_name ()
 

Private Member Functions

void _reset ()
 Mark the internal value as invalid. More...
 

Private Attributes

T * val_ref
 

Additional Inherited Members

- Static Public Member Functions inherited from filval::GenValue
static void reset ()
 
static GenValueget_value (const std::string &name)
 
static void summary ()
 
- Static Protected Attributes inherited from filval::GenValue
static std::map< const std::string, GenValue * > values
 A static mapping containing all created Value objects. More...
 

Detailed Description

template<typename T>
class filval::ObservedValue< T >

A generic, observed, value.

An ObservedValue is the interface to your dataset. Upon creation, an ObservedValue is given a pointer to an object of type T. When an observation is loaded into memory, the value at the location referenced by that pointer must be updated with the associated data from that observation. This is the responsibility of whatever DataSet implementation is being used. This object then will read that data and return it when requested.

Member Function Documentation

§ _reset()

template<typename T>
void filval::ObservedValue< T >::_reset ( )
inlineprivatevirtual

Mark the internal value as invalid.

This is needed for DerivedValue to force a recalculation of the internal value when a new observation is loaded into memory. It is called automatically for all GenValue objects when reset is called.

Implements filval::GenValue.


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