Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

soauditorlist(3) [debian man page]

SoAuditorList(3)						       Coin							  SoAuditorList(3)

NAME
SoAuditorList - The SoAuditorList class is used to keep track of auditors for certain object classes. This class is mainly for internal use (from SoBase) and it should not be necessary to be familiar with it for 'ordinary' Coin use. SYNOPSIS
#include <Inventor/lists/SoAuditorList.h> Inherits SbPList. Public Member Functions SoAuditorList (void) ~SoAuditorList () void append (void *const auditor, const SoNotRec::Type type) void set (const int index, void *const auditor, const SoNotRec::Type type) void * getObject (const int index) const SoNotRec::Type getType (const int index) const int getLength (void) const int find (void *const auditor, const SoNotRec::Type type) const void remove (const int index) void remove (void *const auditor, const SoNotRec::Type type) void notify (SoNotList *l) Additional Inherited Members Detailed Description The SoAuditorList class is used to keep track of auditors for certain object classes. This class is mainly for internal use (from SoBase) and it should not be necessary to be familiar with it for 'ordinary' Coin use. Constructor &; Destructor Documentation SoAuditorList::SoAuditorList (void) Default constructor. SoAuditorList::~SoAuditorList () Destructor. Member Function Documentation void SoAuditorList::append (void *constauditor, const SoNotRec::Typetype) Append an auditor of type to the list. void SoAuditorList::set (const intindex, void *constauditor, const SoNotRec::Typetype) Set auditor pointer and auditor type in list at index. void * SoAuditorList::getObject (const intindex) const Returns auditor pointer at index. SoNotRec::Type SoAuditorList::getType (const intindex) const Returns auditor type at index. int SoAuditorList::getLength (void) const Returns number of elements in list. Reimplemented from SbPList. int SoAuditorList::find (void *constauditor, const SoNotRec::Typetype) const Find auditor of type in list and return index. Returns -1 if auditor is not in the list. void SoAuditorList::remove (const intindex) Remove auditor at index. Reimplemented from SbPList. void SoAuditorList::remove (void *constauditor, const SoNotRec::Typetype) Remove auditor of type from list. void SoAuditorList::notify (SoNotList *l) Send notification to all our auditors. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoAuditorList(3)

Check Out this Related Man Page

SoFieldList(3)							       Coin							    SoFieldList(3)

NAME
SoFieldList - The SoFieldList class is a container for pointers to SoField objects. SYNOPSIS
#include <Inventor/lists/SoFieldList.h> Inherits SbPList. Public Member Functions SoFieldList (void) SoFieldList (const int sizehint) SoFieldList (const SoFieldList &l) void append (SoField *field) void insert (SoField *field, const int insertbefore) SoField * operator[] (const int idx) const void set (const int idx, SoField *field) SoField * get (const int idx) const Additional Inherited Members Detailed Description The SoFieldList class is a container for pointers to SoField objects. See also: SbList Constructor &; Destructor Documentation SoFieldList::SoFieldList (void) [inline] Default constructor. SoFieldList::SoFieldList (const intsizehint) [inline] This constructor initializes the internal allocated size for the list to sizehint. Note that the list will still initially contain zero items. See also: SbList::SbList(const int) SoFieldList::SoFieldList (const SoFieldList &l) [inline] Copy constructor. See also: SbList::SbList(const SbList<Type> & l) Member Function Documentation void SoFieldList::append (SoField *field) [inline] Overridden from parent to accept an SoField pointer argument. void SoFieldList::insert (SoField *field, const intinsertbefore) [inline] Overridden from parent to accept an SoField pointer argument. SoField * SoFieldList::operator[] (const intidx) const [inline] Overridden from parent to return an SoField pointer. Reimplemented from SbPList. void SoFieldList::set (const intindex, SoField *item) [inline] Overridden from parent to accept an SoField pointer argument. SoField * SoFieldList::get (const intidx) const [inline] Overridden from parent to return an SoField pointer. Reimplemented from SbPList. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoFieldList(3)
Man Page