name: Recipe

synopsis:

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

#include <Recipe.h>

Recipe();
Recipe(const Recipe& arg);
boolean isEmpty() const;
boolean readGraph(Sof& sof, long graph_tag = 0);
quick start:

Recipe rcp;
Sof sof;
sof.open(L"diagnose_container.sof");
rcp.readGraph(sof);
description:

The Recipe class is used by the
FrontEnd class to allow the user to specify an arbitrary signal flow graph for front end processing. The user specifies what processing should take place to transform input to output by specifying a graph using the transform_builder. This class is responsible for reading in Component graph and finding the appropriate processing paths through the graph.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: