name: Boolean

synopsis:

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

#include <Boolean.h>

Boolean(boolean arg = DEF_VALUE);
boolean assign(boolean arg);
quick start:

Boolean val0;  
val0.assign(true);

Boolean val1;
val1 = !val0;
description:

The Boolean class manages values of type bool. A Boolean object can read itself from (or write itself to) a Sof file. The Boolean class includes memory management methods which use the MemoryManager class to allocate or delete memory to or from the heap.

dependencies:

public constants:

error codes: protected data:

required public methods:

class-specific public methods:

private methods: examples:

notes: