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