Inherits YGP::ParseAttomic.
Public Member Functions | |
CBParseAttomic (const char *value, const char *description, PARSECALLBACK callback, unsigned int max=1, unsigned int min=1, bool skipWhitespace=true) | |
CBParseAttomic (const CBParseAttomic &other) | |
virtual | ~CBParseAttomic () |
CBParseAttomic & | operator= (const CBParseAttomic &other) |
void | setCallback (PARSECALLBACK callback) |
Protected Member Functions | |
virtual int | found (const char *pFoundValue, unsigned int len) |
See ParseObject for a general description of the parser and ParseAttomic for a description of how this class parses its object.
YGP::CBParseAttomic::CBParseAttomic | ( | const char * | value, | |
const char * | description, | |||
PARSECALLBACK | callback, | |||
unsigned int | max = 1 , |
|||
unsigned int | min = 1 , |
|||
bool | skipWhitespace = true | |||
) | [inline] |
Constructor; with callback to call if object is found.
YGP::CBParseAttomic::CBParseAttomic | ( | const CBParseAttomic & | other | ) | [inline] |
Copy constructor.
YGP::CBParseAttomic::~CBParseAttomic | ( | ) | [virtual] |
Destructor.
int YGP::CBParseAttomic::found | ( | const char * | pFoundValue, | |
unsigned int | len | |||
) | [protected, virtual] |
Calls the defined callback with the passed parameter and returns its result.
pFoundValue | Pointer to found value | |
len | Length of found data |
Reimplemented from YGP::ParseObject.
CBParseAttomic & YGP::CBParseAttomic::operator= | ( | const CBParseAttomic & | other | ) |
void YGP::CBParseAttomic::setCallback | ( | PARSECALLBACK | callback | ) | [inline] |
Sets the callback to the passed value.