man SoFieldList () - maintains a list of pointers to fields

NAME

SoFieldList - maintains a list of pointers to fields

INHERITS FROM

SbPList > SoFieldList

SYNOPSIS

#include <Inventor/SoLists.h> Methods from class SoFieldList: c } c } SoFieldList()

c } c } SoFieldList(int size)

c } c } SoFieldList(const SoFieldList &l)

c } c } ~SoFieldList()

c } c } append(SoField *ptr)

c } c } insert(SoField *ptr, int addBefore)

c } c } operator [](int i) const

c } c } set(int i, SoField *field) Methods from class SbPList: c } c } find(const void *ptr) const

c } c } remove(int which)

c } c } getLength() const

c } c } truncate(int start)

c } c } copy(const SbPList &pl)

c } c } operator =(const SbPList &pl)

c } c } operator ==(const SbPList &pl) const

c } c } operator !=(const SbPList &pl) const

DESCRIPTION

This subclass of SbPList holds lists of pointers to instances of classes derived from SoField.

METHODS

c } c } SoFieldList()

Constructor. c } c } SoFieldList(int size)

Constructor that pre-allocates storage for size pointers. c } c } SoFieldList(const SoFieldList &l)

Constructor that copies the contents of another list. c } c } ~SoFieldList()

Destructor. c } c } append(SoField *ptr)

Adds a pointer to the end of the list. c } c } insert(SoField *ptr, int addBefore)

Inserts given pointer in list before pointer with given index. c } c } operator [](int i) const

Accesses an element of a list. c } c } set(int i, SoField *field)

Sets an element of a list.

SEE ALSO

SoField