Video SDK for Windows API Reference
Loading...
Searching...
No Matches
zoom_video_sdk_vector_interface.h
Go to the documentation of this file.
1
6#ifndef _ZOOM_VIDEO_SDK_VECTOR_INTERFACE_H_
7#define _ZOOM_VIDEO_SDK_VECTOR_INTERFACE_H_
9
15template<class T>
17{
18public:
19 virtual ~IVideoSDKVector(){};
20
25 virtual int GetCount() = 0;
26
32 virtual T GetItem(int index) = 0;
33};
35#endif
SDK-defined vector interface for managing collections of items.
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.
Zoom Video SDK Common Definition File.
#define BEGIN_ZOOM_VIDEO_SDK_NAMESPACE
#define END_ZOOM_VIDEO_SDK_NAMESPACE