# HG changeset patch # User jwe # Date 784006643 0 # Node ID 29d190ae3364217a696f5085983ee661ecaa7707 # Parent e0bfbbf20e402ae6b426a90a4e4b82f4f3e752d9 [project @ 1994-11-05 03:37:23 by jwe] Initial revision diff --git a/liboctave/Array-i.cc b/liboctave/Array-i.cc new file mode 100644 --- /dev/null +++ b/liboctave/Array-i.cc @@ -0,0 +1,42 @@ +// Array-i.cc -*- C++ -*- +/* + +Copyright (C) 1993, 1994 John W. Eaton + +This file is part of Octave. + +Octave is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2, or (at your option) any +later version. + +Octave is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Octave; see the file COPYING. If not, write to the Free +Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +// Instantiate Arrays of integer values. + +#include "Array.h" +#include "Array.cc" + +template class ArrayRep; +template class Array; + +// For now, we only need 1D arrays of integers. +// +// template class Array2; +// template class DiagArray; + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; page-delimiter: "^/\\*" *** +;;; End: *** +*/