eRPC Generator (erpcgen)
Rev. 1.12.0
NXP Semiconductors
|
#include <options.hpp>
Public Member Functions | |
OptArgvIter (const char *const argv[]) | |
OptArgvIter (int argc, const char *const argv[]) | |
virtual const char * | curr (void) override |
virtual void | next (void) override |
next() advances to the next item. | |
virtual const char * | operator() (void) override |
virtual void | rewind (void) override |
rewind() resets the "current-element" to the first one in the "list" | |
int | index (void) |
index returns the current index to use for argv[] | |
Class to iterate through an array of tokens. The array may be terminated by NULL or a count containing the number of tokens may be given.
|
overridevirtual |
curr() returns the current item in the iterator without advancing on to the next item. If we are at the end of items then NULL is returned.
Implements OptIterRwd.
|
overridevirtual |
operator() returns the current item in the iterator and then advances on to the next item. If we are at the end of items then NULL is returned.
Implements OptIterRwd.