name: DisplayData : public AlgorithmBase

synopsis:

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

#include <DisplayData.h>

DisplayData();
DisplayData(const DisplayData& arg);
boolean eq(const DisplayData& arg);
boolean setAlgorithm(ALGORITHM algorithm);
quick start:

DisplayData lab;
lab.setNumber((long)3);
lab.setLabel(L"My Data");
description:

This class is used by isip_transform to implement a primitive debugging capability. A DisplayData component can be introduced anywhere in a signal flow graph to display data to the console (or file) as a signal is being processed through the graph. The display format can be customized using building blocks such as strings, prefixes, and suffixes.

A list of options are given below:


The class currently supports output via the
Console class. Most of the standard algorithm interface parameters are not relevant (e.g., Mode). The main option under user control is the frequency with which information is printed, implemented via the selection of the algorithm.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: