#include <Inventor/lists/SoAuditorList.h>
Inheritance diagram for SoAuditorList:
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) |
This class is mainly for internal use (from SoBase) and it should not be necessary to be familiar with it for "ordinary" Coin use.
|
Default constructor. |
|
Destructor. |
|
Append an auditor of type to the list. |
|
Set auditor pointer and auditor type in list at index. |
|
Returns auditor pointer at index. |
|
Returns auditor type at index. |
|
Returns number of elements in list. Reimplemented from SbList< void * >. |
|
Find auditor of type in list and return index. Returns -1 if auditor is not in the list. |
|
Remove auditor at index. Reimplemented from SbList< void * >. |
|
Remove auditor of type from list. |
|
Send notification to all our auditors. |