TTTT Analysis
0.1
|
A std::vector wrapper around a C-style array. More...
#include <value.hpp>
Public Member Functions | |
WrapperVector (Value< int > *size, Value< T *> *data, const std::string &alias="") | |
WrapperVector (const std::string &label_size, const std::string &label_data, const std::string &alias="") | |
![]() | |
DerivedValue (const std::string &name, const std::string &alias="") | |
std::vector< T > & | get_value () |
Calculate, if necessary, and return the value held by this object. | |
![]() | |
Value (const std::string &name, const std::string &alias="") | |
![]() | |
GenValue (const std::string &name, const std::string &alias) | |
const std::string & | get_name () |
Private Member Functions | |
void | update_value () |
Updates the internal value. More... | |
Private Attributes | |
Value< int > * | size |
Value< T * > * | data |
Additional Inherited Members | |
![]() | |
static void | reset () |
static GenValue * | get_value (const std::string &name) |
static void | alias (const std::string &name, GenValue *value) |
static GenValue * | alias (const std::string &name) |
static std::string | summary () |
![]() | |
std::vector< T > | value |
bool | value_valid |
![]() | |
static std::map< const std::string, GenValue * > | values |
A static mapping containing all created Value objects. More... | |
static std::map< const std::string, GenValue * > | aliases |
Composite value names are typically nested. More... | |
A std::vector wrapper around a C-style array.
In order to make some of the higher-level Value types easier to work with, it is a good idea to wrap all arrays in the original data source with std::vector objects. To do this, it is necessary to supply both a Value object containing the array itself as well as another Value object containing the size of that array. Currently, update_value will simply copy the contents of the array into the interally held vector.
|
inlineprivatevirtual |
Updates the internal value.
This function should be overridden by any child class to do the actual work of updating value based on whatever rules the class chooses. Normally, this consists of geting the values from some associated Value objects, doing some calculation on them, and storing the result in value.
Implements fv::DerivedValue< std::vector< T > >.