![]() |
DynRPG
v0.20
RM2k3 Plugin SDK
|
Class representing Delphi's TList (without resizing for the moment)
More...
Public Member Functions | |
| T & | operator[] (int index) |
| Array access operator which will throw an error on invalid indexes. | |
| T | get (int index) |
Array access method which will return 0 on invalid indexes. | |
Public Attributes | |
| T * | items |
| Pointer to the actual array. | |
| int | count |
| Number of elements in the list. | |
Class representing Delphi's TList (without resizing for the moment)
| T RPG::DList< T >::get | ( | int | index | ) | [inline] |
Array access method which will return 0 on invalid indexes.
| T& RPG::DList< T >::operator[] | ( | int | index | ) | [inline] |
Array access operator which will throw an error on invalid indexes.
| int RPG::DList< T >::count |
Number of elements in the list.
| T* RPG::DList< T >::items |
Pointer to the actual array.
1.7.6.1