Source
- makedepend -fMakefile.depend $(INCDIR) -I/usr/include/CC $(BASE_SRCS) $(GUI_SRCS)
--- Array.h.orig 1995-12-19 13:24:31.000000000 -0600
+++ Array.h 2018-04-11 18:48:55.000000000 -0500
#ifndef ARRAY_INCLUDED // -*- C++ -*-
#define ARRAY_INCLUDED
+#include <memory.h>
+
+
//
// Array classes
//
template<class T>
-class array {
+class Array {
protected:
T *data;
int len;
public:
- array() { data=NULL; len=0; }
- array(int l) { init(l); }
- ~array() { free(); }
+ Array() { data=NULL; len=0; }
+ Array(int l) { init(l); }
+ ~Array() { free(); }
inline void init(int l);
};
template<class T>
-inline void array<T>::init(int l)
+inline void Array<T>::init(int l)
{
data = new T[l];
len = l;
}
template<class T>
-inline void array<T>::free()
+inline void Array<T>::free()
{
if( data )
{
}
template<class T>
-inline T& array<T>::ref(int i)
+inline T& Array<T>::ref(int i)
{
#ifdef SAFETY
assert( data );
}
template<class T>
-inline void array<T>::resize(int l)
+inline void Array<T>::resize(int l)