An Array of ints

Declaration:

Int MyArray[50];

Int MyArraySize; // number of items I happen to be storing

PD:

ss.Store(MyArraySize);

for(Indx = 0; Indx < MyArraySize; Indx++)

ss.Store(MyArray [Indx]);

ss.RetrieveStream(abStatic); // move data from ss to abstatic

GD:

CStaticStorage ss(abStatic); // get data from abStatic

ss.Get(MyArraySize);

for(Indx = 0; Indx < MyArraySize; Indx++)

ss.Get(nMyArray [Indx]);