SDK-defined vector interface for managing collections of items.
More...
#include <zoom_video_sdk_vector_interface.h>
|
| virtual | ~IVideoSDKVector () |
| |
| virtual int | GetCount ()=0 |
| | Gets the total number of items in the vector.
|
| |
| virtual T | GetItem (int index)=0 |
| | Gets the item at the specified index.
|
| |
template<class T>
class IVideoSDKVector< T >
SDK-defined vector interface for managing collections of items.
Definition at line 16 of file zoom_video_sdk_vector_interface.h.
◆ ~IVideoSDKVector()
◆ GetCount()
Gets the total number of items in the vector.
- Returns
- The count of items in the vector.
◆ GetItem()
Gets the item at the specified index.
- Parameters
-
| index | The zero-based index of the item to retrieve. |
- Returns
- The item at the specified index.