#include <fbcore.h>
Public Member Functions | |
virtual int | Add (FBDeviceInstrument *pItem) |
Add an instrument to the property list. | |
virtual void | RemoveAt (int pIndex) |
Remove the instrument at pIndex. | |
FBDeviceInstrument * | operator[] (int pIndex) |
Get the model template at pIndex. | |
virtual int | GetCount () |
Get the number of instruments. | |
virtual FBComponent * | GetAt (int pIndex) |
Get the Component at pIndex. |
virtual int Add | ( | FBDeviceInstrument * | pItem | ) | [virtual] |
Add an instrument to the property list.
pItem | Instrument to add to list. |
virtual void RemoveAt | ( | int | pIndex | ) | [virtual] |
Remove the instrument at pIndex.
pIndex | Index of instrument to remove. |
Reimplemented from FBPropertyListComponentBase.
FBDeviceInstrument* operator[] | ( | int | pIndex | ) |
Get the model template at pIndex.
pIndex | Index of instruments to get. |
Reimplemented from FBPropertyListComponentBase.
virtual int GetCount | ( | ) | [virtual] |
Get the number of instruments.
Reimplemented from FBPropertyListComponentBase.
virtual FBComponent* GetAt | ( | int | pIndex | ) | [inline, virtual] |
Get the Component at pIndex.
pIndex | Index of Component to get a handle on. |
Implements FBPropertyListComponentBase.
Definition at line 639 of file fbcore.h.
{ return (FBComponent*)operator[](pIndex); }