SetMax

Description

Sets the maximum T object pointer.

Prototype

void SetMax(T *max)

Parameters

Parameter

Input/Output

Description

max

Input

Maximum T object pointer.

Returns

None

Restrictions

None

Example

Range<int> range;
int max = 1024;
range.SetMax(&max);