Home | History | Annotate | Download | only in IlmImf

Lines Matching refs:Array

42 // class Array
46 // When an array goes out of scope, its elements are automatically
60 // Array <C> a(3);
76 class Array
84 Array () {_data = 0;}
85 Array (long size) {_data = new T[size];}
86 ~Array () {delete [] _data;}
90 // Access to the array elements
98 // Resize and clear the array (the contents of the array
105 // leaves the array in an unusable state.
115 Array (const Array &); // Copying and assignment
116 Array & operator = (const Array &); // are not implemented
131 Array2D (); // empty array, 0 by 0 elements
137 // Access to the array elements
145 // Resize and clear the array (the contents of the array
152 // leaves the array in an unusable state.
176 Array<T>::resizeErase (long size)
186 Array<T>::resizeEraseUnsafe (long size)