ImageExprGram.h

Classes

Global Functions -- Global functions for flex/bison scanner/parser for ImageExprGram (full description)

Global functions for flex/bison scanner/parser for ImageExprGram (source)

Interface

int imageExprGramParseCommand (const String& command)
void ImageExprGramerror (char*)
Int& imageExprGramPosition()
int imageExprGramInput (char* buf, int max_size)
String imageExprGramRemoveEscapes (const String& in)
String imageExprGramRemoveQuotes (const String& in)

Description

Prerequisite

Synopsis

Global functions are needed to define the input of the flex scanner and to start the bison parser. The input is taken from a string.

Motivation

It is necessary to be able to give an image expression in ASCII. This can be used in glish.

To Do

Member Description

int imageExprGramParseCommand (const String& command)

Declare the bison parser (is implemented by bison command).

void ImageExprGramerror (char*)

The yyerror function for the parser. It throws an exception with the current token.

Int& imageExprGramPosition()

Give the current position in the string. This can be used when parse errors occur.

int imageExprGramInput (char* buf, int max_size)

Declare the input routine for flex/bison.

String imageExprGramRemoveEscapes (const String& in)

A function to remove escaped characters.

String imageExprGramRemoveQuotes (const String& in)

A function to remove quotes from a quoted string.