Open SCAP Library
|
Select iterator. More...
#include <xccdf_benchmark.h>
Public Member Functions | |
Iterators | |
OSCAP_API struct xccdf_select * | xccdf_select_iterator_next (struct xccdf_select_iterator *it) |
Return the next xccdf_select structure from the list and increment the iterator. | |
OSCAP_API bool | xccdf_select_iterator_has_more (struct xccdf_select_iterator *it) |
Return true if the list is not empty, false otherwise. | |
OSCAP_API void | xccdf_select_iterator_free (struct xccdf_select_iterator *it) |
Free the iterator structure (it makes no changes to the list structure) | |
OSCAP_API void | xccdf_select_iterator_reset (struct xccdf_select_iterator *it) |
Reset the iterator structure (it makes no changes to the list structure) | |
Setters | |
For lists use add functions. Parameters of set functions are duplicated in memory and need to be freed by caller. | |
OSCAP_API void | xccdf_select_iterator_remove (struct xccdf_select_iterator *it) |
Select iterator.