ImageList Class¶
Header: #include "easyar/image.hpp"
Inherits: RefBase
Description¶
ImageList is a list of Image.
Public Functions¶
ImageList()
virtual ImageList()
int size() const
Image operator [](int idx)
Image at(int idx)
ImageList()¶
Creates a ImageList object.
virtual ~ImageList()¶
Destroys the ImageList object.
int size() const¶
Returns the size of the list.
Image operator [](int idx)¶
Returns the Image of index idx . If idx is out of the list index range, an empty (invalid) Image will be returned.
Image at(int idx)¶
Returns the Image of index idx . If idx is out of the list index range, an empty (invalid) Image will be returned.