#include <val.h>


Definition at line 797 of file val.h.
Public Member Functions | |
| val_FSType (const string &a_name, const val_Limit a_limits, const UInt32_t a_minNumOfVal=1, const UInt64_t a_maxNumOfVal=cfg_INFINITE, const string &a_defaultStr="REGULAR") | |
| virtual | ~val_FSType () |
| virtual void | Bind (ivd_FSType_e &a_dest) |
Private Member Functions | |
| virtual void | Assign (const string &a_strVal) |
Private Attributes | |
| ivd_FSType_e * | m_FSType_p |
| log_CLASSID_m | |
| val_FSType::val_FSType | ( | const string & | a_name, | |
| const val_Limit | a_limits, | |||
| const UInt32_t | a_minNumOfVal = 1, |
|||
| const UInt64_t | a_maxNumOfVal = cfg_INFINITE, |
|||
| const string & | a_defaultStr = "REGULAR" | |||
| ) |
Definition at line 1102 of file val.cpp.
01108 : val_Value(a_name, a_limits, a_minNumOfVal, a_maxNumOfVal, a_defaultStr ), 01109 m_FSType_p(NULL) { 01110 // Empty 01111 }
| val_FSType::~val_FSType | ( | ) | [virtual] |
| void val_FSType::Bind | ( | ivd_FSType_e & | a_dest | ) | [virtual] |
Definition at line 1118 of file val.cpp.
References log_FUNC_m, and m_FSType_p.
01118 { 01119 log_FUNC_m(Bind); 01120 m_FSType_p = &(a_dest); 01121 }
| void val_FSType::Assign | ( | const string & | a_strVal | ) | [private, virtual] |
Implements val_BasicValue.
Definition at line 1096 of file val.cpp.
References ivd_FSType(), log_FUNC_m, and m_FSType_p.
01096 { 01097 log_FUNC_m(Assign); 01098 01099 *m_FSType_p = ivd_FSType(a_strVal); 01100 }

ivd_FSType_e* val_FSType::m_FSType_p [private] |
val_FSType::log_CLASSID_m [private] |
1.5.6