oaByteArray Class Reference

Inheritance diagram for oaByteArray:

oaArray<oaByte> oaArrayBase<oaByte>


Public Methods

 oaByteArray (oaUInt4 sizeIn=0)
 oaByteArray (const oaByteArray &bytesIn)
 oaByteArray (const oaByte bytesIn[], oaUInt4 numBytesIn)

Detailed Description

The oaByteArray class implements an array of bytes.


Constructor & Destructor Documentation

oaByteArray::oaByteArray oaUInt4    sizeIn = 0 [inline]
 

This function constructs an oaByteArray object, allocating storage for sizeIn oaByte elements.

Parameters:
sizeIn The number of bytes for which to allocate storage.

oaByteArray::oaByteArray const oaByteArray &    bytesIn [inline]
 

This function constructs an oaByteArray object, creating a copy of the specified oaByteArray.

Parameters:
bytesIn The oaByteArray to copy.

oaByteArray::oaByteArray const oaByte    bytesIn[],
oaUInt4    numBytesIn
[inline]
 

This function constructs an oaByteArray object based on the input array of oaBytes.

Parameters:
bytesIn[] The array of oaByte objects.
numBytesIn The number of oaByte objects in the array.


The documentation for this class was generated from the following files:

Return to top of page