本文整理汇总了C++中DynArray::FindIndexOf方法的典型用法代码示例。如果您正苦于以下问题:C++ DynArray::FindIndexOf方法的具体用法?C++ DynArray::FindIndexOf怎么用?C++ DynArray::FindIndexOf使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DynArray
的用法示例。
在下文中一共展示了DynArray::FindIndexOf方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: FindSelectedGroups
// FindSelectedGroups():
// Adds groups id they are selected, and adds parent groups of selected items.
void SelectOMatic_Item::FindSelectedGroups( DynArray< SelectOMatic_Item * > &array ) {
if( id == SOM_GROUP ) {
if( is_selected ) {
if( array.FindIndexOf( this ) == DA_NO_MATCH )
array.Add( this );
}
for( unsigned long i=0; i < children.NumElements(); i++ )
children[i]->FindSelectedGroups( array );
} else {
if( is_selected ) {
if( array.FindIndexOf( parent ) == DA_NO_MATCH )
array.Add( parent );
}
}
}
示例2: SimplifyDestroy
// SimplifyDestroy()
XCALL_ (void) SimplifyDestroy( LWInstance inst ) {
instances.Remove( instances.FindIndexOf( (SimplifyInstance *)inst ) );
delete inst;
}
示例3: ParticleCloud_Destroy
// ParticleCloud_Destroy():
void ParticleCloud_Destroy( LWInstance _inst ) {
ParticleCloud_Instance *inst = (ParticleCloud_Instance *)_inst;
instances.Remove( instances.FindIndexOf( inst ) );
delete inst;
}