#include <Inventor/lists/SbList.h>
Public Member Functions | |
SbList (const int sizehint=DEFAULTSIZE) | |
SbList (const SbList< Type > &l) | |
~SbList () | |
void | copy (const SbList< Type > &l) |
SbList< Type > & | operator= (const SbList< Type > &l) |
void | fit (void) |
void | append (const Type item) |
int | find (const Type item) const |
void | insert (const Type item, const int insertbefore) |
void | removeItem (const Type item) |
void | remove (const int index) |
void | removeFast (const int index) |
int | getLength (void) const |
void | truncate (const int length, const int fit=0) |
void | push (const Type item) |
Type | pop (void) |
const Type * | getArrayPtr (const int start=0) const |
Type | operator[] (const int index) const |
Type & | operator[] (const int index) |
int | operator== (const SbList< Type > &l) const |
int | operator!= (const SbList< Type > &l) const |
Protected Member Functions | |
void | expand (const int size) |
int | getArraySize (void) const |
SbList is an extension of the Coin library versus the original Open Inventor API. Open Inventor handles most list classes by inheriting the SbPList class, which contains an array of generic void*
pointers. By using this template-based class instead, we can share more code and make the list handling code more typesafe.
Care has been taken to make sure the list classes which are part of the Open Inventor API to still be compatible with their original interfaces, as derived from the SbPList base class. But if you still bump into any problems when porting your Open Inventor applications, let us know and we'll do our best to sort them out.
A feature with this class is that the list object arrays grow dynamically as you append() more items to the list. The actual growing technique used is to double the list size when it becomes too small.
There are also other array-related convenience methods; e.g. finding item indices, inserting items at any position, removing items (and shrink the array), copying of arrays, etc.
|
Default constructor. The sizehint argument hints about how many elements the list will contain, so memory allocation can be done efficiently. Important note: explicitly specifying an sizehint value does not mean that the list will initially contain this number of values. After construction, the list will contain zero items, just as for the default constructor. Here's a good example on how to give yourself hard to find bugs:
Since this conceptual misunderstanding is so easy to make, you're probably better (or at least safer) off leaving the sizehint argument to its default value by not explicitly specifying it. It improves performance if you know the approximate total size of the list in advance before adding list elements, as the number of reallocations will be minimized. |
|
Copy constructor. Creates a complete copy of the given list. |
|
Destructor, frees all internal resources used by the list container. |
|
Make this list a copy of l. |
|
Make this list a copy of l. |
|
Fit the allocated array exactly around the length of the list, descarding memory spent on unused pre-allocated array cells. You should normally not need or want to call this method, and it is only available for the sake of having the option to optimize memory usage for the unlikely event that you should throw around huge SbList objects within your application. |
|
Append the item at the end of list, expanding the list array by one. Reimplemented in SbVec3fList. |
|
Return index of first occurrence of item in the list, or -1 if item is not present. |
|
Insert item at index insertbefore. insertbefore should not be larger than the current number of items in the list. Reimplemented in SbVec3fList. |
|
Removes an item from the list. If there are several items with the same value, removes the item with the lowest index. |
|
Remove the item at index, moving all subsequent items downwards on place in the list. Reimplemented in SoAuditorList, SoBaseList, and SoChildList. |
|
Remove the item at index, moving the last item into its place and truncating the list. |
|
Returns number of items in the list. Reimplemented in SoAuditorList. |
|
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. |
|
This appends item at the end of the list in the same fashion as append() does. Provided as an abstraction for using the list class as a stack. |
|
Pops off the last element of the list and returns it. |
|
Returns pointer to a non-modifiable array of the lists elements. start specifies an index into the array. The caller is not responsible for freeing up the array, as it is just a pointer into the internal array used by the list. |
|
Returns a copy of item at index. Reimplemented in SbPList, SoBaseList, SoEngineList, SoNodeList, and SoPathList. |
|
Returns a reference to item at index. Reimplemented in SbPList, and SoActionMethodList. |
|
Equality operator. Returns |
|
Inequality operator. Returns |
|
Expand the list to contain size items. The new items added at the end have undefined value. |
|
Return number of items there's allocated space for in the array.
|