![]() |
eRPC Generator (erpcgen)
Rev. 1.7.2
NXP Semiconductors
|
#include <options.h>
Public Member Functions | |
OptStrTokIter (const char *tokens, const char *delimiters=0) | |
virtual const char * | curr (void) |
virtual void | next (void) |
next() advances to the next item. | |
virtual const char * | operator() (void) |
virtual void | rewind (void) |
rewind() resets the "current-element" to the first one in the "list" | |
const char * | delimiters (void) |
void | delimiters (const char *delims) |
Class to iterate through a string containing delimiter-separated tokens
|
virtual |
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.
|
inline |
delimiters() with NO arguments returns the current set of delimiters, If an argument is given then it is used as the new set of delimiters.
|
virtual |
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.