man SoEngineList () - maintains a list of pointers to engines
NAME
SoEngineList - maintains a list of pointers to engines
INHERITS FROM
SbPList > SoBaseList > SoEngineList
SYNOPSIS
#include <Inventor/SoLists.h>
Methods from class SoEngineList:
c
}
c
}
SoEngineList()
c
}
c
}
SoEngineList(int size)
c
}
c
}
SoEngineList(const SoEngineList &l)
c
}
c
}
~SoEngineList()
c
}
c
}
append(SoEngine *engine)
c
}
c
}
operator [](int i) const
c
}
c
}
operator =(const SoEngineList &l)
Methods from class SoBaseList:
c
}
c
}
insert(SoBase *ptr, int addBefore)
c
}
c
}
remove(int which)
c
}
c
}
truncate(int start)
c
}
c
}
copy(const SoBaseList &l)
c
}
c
}
set(int i, SoBase *ptr)
c
}
c
}
addReferences(SbBool flag)
Methods from class SbPList:
c
}
c
}
find(const void *ptr) const
c
}
c
}
getLength() const
c
}
c
}
operator ==(const SbPList &pl) const
c
}
c
}
operator !=(const SbPList &pl) const
DESCRIPTION
This subclass of SoBaseList holds lists of pointers to SoEngines. It updates reference counts to engines in the list whenever adding or removing pointers.
METHODS
c
}
c
}
SoEngineList()
Constructor.
c
}
c
}
SoEngineList(int size)
Constructor that pre-allocates storage for size pointers.
c
}
c
}
SoEngineList(const SoEngineList &l)
Constructor that copies the contents of another list.
c
}
c
}
~SoEngineList()
Destructor.
c
}
c
}
append(SoEngine *engine)
Adds an engine to the end of the list.
c
}
c
}
operator [](int i) const
Accesses an element of a list.
c
}
c
}
operator =(const SoEngineList &l)
Copies a list, keeping all reference counts correct.
SEE ALSO
SoEngine