MCPcopy Create free account
hub / github.com/SIPp/sipp / isSet

Method isSet

src/variables.cpp:33–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31*/
32
33bool CCallVariable::isSet()
34{
35 if (M_type == E_VT_REGEXP) {
36 if(M_nbOfMatchingValue >= 1)
37 return(true);
38 else
39 return(false);
40 } else if (M_type == E_VT_BOOL) {
41 return M_bool;
42 } else if (M_type == E_VT_DOUBLE) {
43 return M_double;
44 }
45 return (M_type != E_VT_UNDEFINED);
46}
47
48bool CCallVariable::isDouble()
49{

Callers 4

nextMethod · 0.80
runMethod · 0.80
createSendingMessageMethod · 0.80
process_incomingMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected