本文整理汇总了C++中DataItem::append_array方法的典型用法代码示例。如果您正苦于以下问题:C++ DataItem::append_array方法的具体用法?C++ DataItem::append_array怎么用?C++ DataItem::append_array使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataItem
的用法示例。
在下文中一共展示了DataItem::append_array方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: append_array
void ComponentInterface::append_array( const std::string &aname, const int pane_id,
const void *val, int v_strd, int v_size) throw(COM_exception)
{
COM_assertion_msg( !Connectivity::is_element_name( aname),
"append_array supports only CI window and pane dataitems");
DataItem *a = pane( pane_id,true).dataitem( aname);
if ( a==NULL)
throw COM_exception( COM_ERR_DATAITEM_NOTEXIST, append_frame
(name()+"."+aname,ComponentInterface::append_array));
try {
// Set size to 0 if not yet set.
if ( !a->size_set()) a->set_size(0);
// resize the target dataitem.
reinit_dataitem( a, Pane::OP_RESIZE, NULL, a->stride(),
a->size_of_items()+v_size);
}
catch ( COM_exception ex) {
ex.msg = append_frame( ex.msg, ComponentInterface::append_array);
throw ex;
}
// copy the array to the back of the target array
a->append_array( val, v_strd, v_size);
}