#include <val.h>


Definition at line 685 of file val.h.
Public Member Functions | |
| val_CliCommand (const string &a_name, const val_Limit a_limits, const UInt32_t a_minNumOfVal=1, const UInt64_t a_maxNumOfVal=cfg_INFINITE) | |
| virtual | ~val_CliCommand () |
| virtual void | Bind (ivd_CliCommand_e &a_dest) |
Private Member Functions | |
| virtual void | Assign (const string &a_strVal) |
Private Attributes | |
| ivd_CliCommand_e * | m_cliCmd_p |
| log_CLASSID_m | |
| val_CliCommand::val_CliCommand | ( | const string & | a_name, | |
| const val_Limit | a_limits, | |||
| const UInt32_t | a_minNumOfVal = 1, |
|||
| const UInt64_t | a_maxNumOfVal = cfg_INFINITE | |||
| ) |
Definition at line 973 of file cfg_cliarg.cpp.
00978 : val_Value(a_name, a_limits, a_minNumOfVal, a_maxNumOfVal), 00979 m_cliCmd_p(NULL) { 00980 // Empty 00981 }
| val_CliCommand::~val_CliCommand | ( | ) | [virtual] |
| void val_CliCommand::Bind | ( | ivd_CliCommand_e & | a_dest | ) | [virtual] |
Definition at line 987 of file cfg_cliarg.cpp.
References log_FUNC_m, and m_cliCmd_p.
00987 { 00988 log_FUNC_m(Bind); 00989 m_cliCmd_p = &(a_dest); 00990 }
| void val_CliCommand::Assign | ( | const string & | a_strVal | ) | [private, virtual] |
Implements val_BasicValue.
Definition at line 992 of file cfg_cliarg.cpp.
References log_FUNC_m, and m_cliCmd_p.
00992 { 00993 log_FUNC_m(Assign); 00994 00995 // *m_cliCmd_p = ap_GetCommandType(a_strVal); 00996 *m_cliCmd_p = (ivd_CliCommand_e)atoi(a_strVal.c_str()); 00997 }
ivd_CliCommand_e* val_CliCommand::m_cliCmd_p [private] |
val_CliCommand::log_CLASSID_m [private] |
1.5.6