name: Short: public MScalar<Short, int32>

synopsis:

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

#include <Short.h>

Short(Short arg = DEF_VALUE);
Short(const Short& arg);
quick start:

Short val0;
val0 = 10;

Short val1(5);
Short val2;

val2 = val0.exp10(2) + val1.factorial();
description:

The Short class manages 16-bit signed integers. It is derived from the MScalar class and inherits the commonly-used mathematical, logical, dsp and i/o methods from it. A Short object can read itself from (or write itself to) a Sof file. It includes the memory management methods which use the MemoryManager class to allocate or delete memory from the heap.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: