MCPcopy Create free account
hub / github.com/Hamlib/Hamlib / getParm

Method getParm

c++/rigclass.cc:251–260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249
250
251void Rig::getParm(setting_t parm, int& vali)
252{
253 value_t val;
254
255 if (RIG_LEVEL_IS_FLOAT(parm))
256 THROW(new RigException (-RIG_EINVAL));
257
258 CHECK_RIG( rig_get_parm(theRig, parm, &val) );
259 vali = val.i;
260}
261
262void Rig::getParm(setting_t parm, float& valf)
263{

Callers

nothing calls this directly

Calls 2

THROWFunction · 0.85
rig_get_parmFunction · 0.85

Tested by

no test coverage detected