cryph utilities [subset]  2.0
Subset of the full cryph package of mathematical utilities for points, vectors, and matrices
Classes | Functions
Packed3DArray.h File Reference
#include <iostream>

Go to the source code of this file.

Classes

class  cryph::Packed3DArray< T >
 

Functions

template<typename T >
std::ostream & cryph::operator<< (std::ostream &os, const Packed3DArray< T > &t3da)
 
template<typename T >
std::istream & cryph::operator>> (std::istream &is, Packed3DArray< T > &t3da)
 

Detailed Description

A Template class that can be used to build a 3D array of objects. The size of this array is fixed at creation time and cannot be altered.

This is OPEN SOURCE software developed by James R. Miller (jrmil.nosp@m.ler@.nosp@m.ku.ed.nosp@m.u) Original version: ca. 1996. See README_*.txt for more information.

To use this template class, the type used for "T" must be EITHER (1) a primitive type, OR (2) a class that has the following public methods: (2.a) a default constructor (2.b) a copy constructor (2.c) operator= and for which the standard I/O operators (operator>> and operator<<) are defined.

See also
Packed2DArray
ArrayList
ImageReader