本文整理汇总了C++中id_type::to_pp_string方法的典型用法代码示例。如果您正苦于以下问题:C++ id_type::to_pp_string方法的具体用法?C++ id_type::to_pp_string怎么用?C++ id_type::to_pp_string使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类id_type
的用法示例。
在下文中一共展示了id_type::to_pp_string方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: get_converter
/***********************************************************************
* The converter functions
**********************************************************************/
convert::function_type convert::get_converter(
const id_type &id,
const priority_type prio
){
if (not get_table().has_key(id)) throw uhd::key_error(
"Cannot find a conversion routine for " + id.to_pp_string());
//find a matching priority
priority_type best_prio = -1;
for(priority_type prio_i: get_table()[id].keys()){
if (prio_i == prio) {
//----------------------------------------------------------------//
UHD_LOGGER_DEBUG("CONVERT") << "get_converter: For converter ID: " << id.to_pp_string()
<< " Using prio: " << prio;
;
//----------------------------------------------------------------//
return get_table()[id][prio];
}
best_prio = std::max(best_prio, prio_i);
}
//wanted a specific prio, didnt find
if (prio != -1) throw uhd::key_error(
"Cannot find a conversion routine [with prio] for " + id.to_pp_string());
//----------------------------------------------------------------//
UHD_LOGGER_DEBUG("CONVERT") << "get_converter: For converter ID: " << id.to_pp_string()
<< " Using prio: " << best_prio;
//----------------------------------------------------------------//
//otherwise, return best prio
return get_table()[id][best_prio];
}
示例2:
/***********************************************************************
* The registry functions
**********************************************************************/
void shd::convert::register_converter(
const id_type &id,
const function_type &fcn,
const priority_type prio
){
//get a reference to the function table
fcn_table_type &table = get_table();
//register the function if higher priority
if (not table.has_key(id) or table[id].prio < prio){
table[id].fcn = fcn;
table[id].prio = prio;
}
//----------------------------------------------------------------//
SHD_LOGV(always) << "register_converter: " << id.to_pp_string() << std::endl
<< " prio: " << prio << std::endl
<< std::endl
;
//----------------------------------------------------------------//
}
示例3: get_converter
/***********************************************************************
* The converter functions
**********************************************************************/
convert::function_type convert::get_converter(const id_type &id){
if (get_table().has_key(id)) return get_table()[id].fcn;
throw shd::key_error("Cannot find a conversion routine for " + id.to_pp_string());
}