本文整理汇总了C++中GList::search方法的典型用法代码示例。如果您正苦于以下问题:C++ GList::search方法的具体用法?C++ GList::search怎么用?C++ GList::search使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GList
的用法示例。
在下文中一共展示了GList::search方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: if
void
DjVuTXT::get_zones(int zone_type, const Zone *parent,
GList<Zone *> & zone_list) const
// get all the zones of type zone_type under zone node parent
{
// search all branches under parent
const Zone *zone=parent;
for( int cur_ztype=zone->ztype; cur_ztype<zone_type; ++cur_ztype )
{
GPosition pos;
for(pos=zone->children; pos; ++pos)
{
Zone *zcur=(Zone *)&zone->children[pos];
if ( zcur->ztype == zone_type )
{
GPosition zpos=zone_list;
if ( !zone_list.search(zcur,zpos) )
zone_list.append(zcur);
}
else if ( zone->children[pos].ztype < zone_type )
get_zones(zone_type, &zone->children[pos], zone_list);
}
}
}