The GestureList class represents a list of Gesture objects.
More...
Inherits Interface.
The GestureList class represents a list of Gesture objects.
Get a GestureList object from a Frame object.
- Since
- 1.0
A C++ iterator type for GestureList objects.
std::cout << (*gl).toString() << std::endl;
- Since
- 1.0
Constructs an empty gesture list.
- Since
- 1.0
The C++ iterator set to the beginning of this GestureList.
{
std::cout << (*gl).toString() << std::endl;
}
- Since
- 1.0
The length of this list.
- Returns
- The number of gestures in this list.
- Since
- 1.0
The C++ iterator set to the end of this GestureList.
std::cout << (*gl).toString() << std::endl;
- Since
- 1.0
Reports whether the list is empty.
- Returns
- True, if the list has no members.
- Since
- 1.0
Gesture operator[] |
( |
int |
index | ) |
const |
Access a list member by its position in the list.
- Parameters
-
index | The zero-based list position index. |
- Returns
- The Gesture object at the specified index.
- Since
- 1.0