00001 // Template array classes 00002 /* 00003 00004 Copyright (C) 1996-2012 John W. Eaton 00005 00006 This file is part of Octave. 00007 00008 Octave is free software; you can redistribute it and/or modify it 00009 under the terms of the GNU General Public License as published by the 00010 Free Software Foundation; either version 3 of the License, or (at your 00011 option) any later version. 00012 00013 Octave is distributed in the hope that it will be useful, but WITHOUT 00014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00015 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00016 for more details. 00017 00018 You should have received a copy of the GNU General Public License 00019 along with Octave; see the file COPYING. If not, see 00020 <http://www.gnu.org/licenses/>. 00021 00022 */ 00023 00024 #if !defined (octave_Array2_h) 00025 #define octave_Array2_h 1 00026 00027 #include "Array.h" 00028 #define Array2 Array 00029 00030 // If we're with GNU C++, issue a warning. 00031 #ifdef __GNUC__ 00032 #warning Using Array2<T> is deprecated. Use Array<T> directly. 00033 #endif 00034 00035 #endif