dca_interface
6.3.4
|
#include <wac_applications.h>
Definition of a container class for WacApplication objects.
Can be obtained from a WacCategoriesInfo object
Use WacApplications in a similar manner to a std::container. The container can be easily iterated over using size() and operator [].
Definition at line 30 of file wac_applications.h.
Public Member Functions | |
WacApplication | at (DCA_INDEX_TYPE index) const |
Returns the WacApplication with given index. More... | |
WacApplication | operator[] (DCA_INDEX_TYPE index) const |
Similar to at() but allows a more C++ style access. More... | |
DCA_SIZE_TYPE | size () const |
Returns the number of applications in the container. More... | |
WacApplication | byId (DCA_APPLICATION_ID_TYPE appid) const |
Returns the application with the given application id. More... | |
WacApplication dca_wac::WacApplications::at | ( | DCA_INDEX_TYPE | index | ) | const |
Returns the WacApplication with given index.
[in] | index | The index of the application. Range is from 0 to size() - 1 |
WacApplication dca_wac::WacApplications::operator[] | ( | DCA_INDEX_TYPE | index | ) | const |
Similar to at() but allows a more C++ style access.
[in] | index | The index of the application. Range is from 0 to size() - 1 |
DCA_SIZE_TYPE dca_wac::WacApplications::size | ( | ) | const |
Returns the number of applications in the container.
WacApplication dca_wac::WacApplications::byId | ( | DCA_APPLICATION_ID_TYPE | appid | ) | const |
Returns the application with the given application id.
[in] | appid | The id of the requested application |