Classes | |
class | nv_find |
class | to_prop |
Functions | |
def | append (dest, src) |
def | appendStringValue (nv, name, value) |
def | copyFromProperties (nv, prop) |
Copy to NVList from Proeprties. More... | |
def | copyToProperties (prop, nvlist) |
Copy to Proeprties from NVList. More... | |
def | dump (nv) |
def | dump_to_stream (out, nv) |
Print information configured in NVList as a string type std::ostream& dump_to_stream(std::ostream& out, const SDOPackage::NVList& nv) More... | |
def | find (nv, name) |
Get value in NVList specified by name. More... | |
def | find_index (nv, name) |
def | isString (nv, name) |
def | isStringValue (nv, name, value) |
def | newNV (name, value) |
Create NameVale. More... | |
def | toProperties (nv) |
coil::Properties toProperties(const SDOPackage::NVList& nv); More... | |
def | toString (nv, name=None) |
Get string value in NVList specified by name. More... | |
def OpenRTM_aist.NVUtil.appendStringValue | ( | nv, | |
name, | |||
value | |||
) |
def OpenRTM_aist.NVUtil.copyFromProperties | ( | nv, | |
prop | |||
) |
Copy to NVList from Proeprties.
This operation copies Properties to NVList. Created NVList's values are CORBA::string.
nv | NVList to store Properties values |
prop | Properties that is copies from |
void copyFromProperties(SDOPackage::NVList& nv, const coil::Properties& prop);
def OpenRTM_aist.NVUtil.copyToProperties | ( | prop, | |
nvlist | |||
) |
Copy to Proeprties from NVList.
This operation copies NVList to Properties.
prop | Properties to store NVList values |
nv | NVList that is copies from |
void copyToProperties(coil::Properties& prop, const SDOPackage::NVList& nv);
def OpenRTM_aist.NVUtil.dump_to_stream | ( | out, | |
nv | |||
) |
def OpenRTM_aist.NVUtil.find | ( | nv, | |
name | |||
) |
def OpenRTM_aist.NVUtil.newNV | ( | name, | |
value | |||
) |
def OpenRTM_aist.NVUtil.toProperties | ( | nv | ) |
def OpenRTM_aist.NVUtil.toString | ( | nv, | |
name = None |
|||
) |
Get string value in NVList specified by name.
This operation returns string value in NVList specified by name. If the value in NVList specified by name is not CORBA::string type this operation returns empty string value.
nv | NVList to be searched |
name | name to to serach |