name: JSGFToken

synopsis:

g++ [flags ...] file ... -l /isip/tools/lib/$ISIP_BINARY/lib_mmedia.a

#include <JSGFToken.h>

JSGFToken();
boolean setToken(const String& arg_a);
boolean printToken();
String getTerminal();
boolean setCoordinate(long row_a, long col_a);
quick start:

JSGFToken jt;
String token_str(L"public");
jt.setToken(token_str);
jt.printToken();
description:

The JSGFToken class is used to store and manage various types of JSGF grammar tokens tokenized from given JSGF grammar strings. For a good reference on JSGF grammar, see:
This class is mainly used by JSGFParser class to convert JSGF grammar to ISIP DiGraph representation.

dependencies:

public constants:

error codes:

public data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: