PrimoBurner(tm) for C++
4.2
CD, DVD and Blu-ray Software Development Kit
|
Represents a list of CDMode objects. More...
#include <PrimoBurner.h>
Public Member Functions | |
virtual void | add (CDMode *item)=0 |
Adds a new CDMode object to the list. | |
virtual CDMode * | at (int32_t index) const =0 |
Gets the element at the specified index. | |
virtual void | clear ()=0 |
Removes all items from the list. | |
virtual int32_t | count () const =0 |
Gets the number of elements in the list. | |
virtual int32_t | indexOf (const CDMode *item) const =0 |
Determines the index of a specific item in the list. | |
virtual bool_t | insert (int32_t index, CDMode *item)=0 |
Inserts an element at the specified position in the list. | |
virtual bool_t | remove (int32_t index)=0 |
Removes the element at the specified index. | |
virtual bool_t | setAt (int32_t index, CDMode *item)=0 |
Sets the element at the specified index. |
Represents a list of CDMode objects.
Gets the element at the specified index.
This method returns a reference type.
index | The zero-based index of the element to get. |
virtual int32_t count | ( | ) | const [pure virtual] |
Gets the number of elements in the list.
Determines the index of a specific item in the list.
item | The item that is searched in the list |
Inserts an element at the specified position in the list.
index | The zero-based index in the list where the new element should be inserted. |
item | The new CDMode object that should be inserted in the list. |
virtual bool_t remove | ( | int32_t | index | ) | [pure virtual] |
Removes the element at the specified index.
index | The zero-based index of the element to remove. |