Coin
4.0.3
Coin3D core library
|
The SoDetailList class is a container for pointers to SoDetail objects. More...
#include <Inventor/lists/SoDetailList.h>
Additional Inherited Members | |
Protected Member Functions inherited from SbPList | |
void | expand (const int size) |
int | getArraySize (void) const |
The SoDetailList class is a container for pointers to SoDetail objects.
This list class will delete the details when destructed/truncated, or when a detail in the list is replaced by another detail. The caller is responsible for allocating the details passed to the list, but should not deallocate them since this will be handled by the list.
|
inline |
Default constructor.
|
inline |
This constructor initializes the internal allocated size for the list to sizehint. Note that the list will still initially contain zero items.
SoDetailList::SoDetailList | ( | const SoDetailList & | l | ) |
Copy constructor.
SoDetailList::~SoDetailList | ( | ) |
Destructor.
Append item to the end of the list.
Automatically allocates more items internally if needed.
Overloaded from parent to accept an SoDetail pointer argument.
void SoDetailList::copy | ( | const SoDetailList & | l | ) |
Make this list a copy of l.
Overloaded from parent to copy items, not just pointers.
Insert item at index insertbefore.
insertbefore should not be larger than the current number of items in the list.
Overloaded from parent to accept an SoDetail pointer argument.
|
inline |
Make this list a copy of l.
Returns element at index.
Will automatically expand the size of the internal array if index is outside the current bounds of the list. The values of any additional pointers are then set to NULL
.
Overloaded from parent to return an SoDetail pointer.
Index operator to set element at index. Does not expand array bounds if index is outside the list.
Overloaded from parent to destruct the replaced item.
Shorten the list to contain length elements, removing items from index length and onwards.
If fit is non-zero, will also shrink the internal size of the allocated array. Note that this is much less efficient than not re-fitting the array size.
Overloaded from parent to delete truncated items.