liboctave/Array-d.cc
Go to the documentation of this file.00001 /* 00002 00003 Copyright (C) 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2003, 2004, 00004 2005, 2006, 2007 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 #ifdef HAVE_CONFIG_H 00025 #include <config.h> 00026 #endif 00027 00028 // Instantiate Arrays of double values. 00029 00030 #include "Array.h" 00031 #include "Array.cc" 00032 00033 INSTANTIATE_ARRAY_AND_ASSIGN (double, OCTAVE_API); 00034 00035 INSTANTIATE_ARRAY_ASSIGN (double, int, OCTAVE_API); 00036 INSTANTIATE_ARRAY_ASSIGN (double, short, OCTAVE_API); 00037 INSTANTIATE_ARRAY_ASSIGN (double, char, OCTAVE_API); 00038 00039 #include "Array2.h" 00040 00041 template class OCTAVE_API Array2<double>; 00042 00043 #include "ArrayN.h" 00044 #include "ArrayN.cc" 00045 00046 template class OCTAVE_API ArrayN<double>; 00047 00048 template OCTAVE_API std::ostream& operator << (std::ostream&, const ArrayN<double>&); 00049 00050 #include "DiagArray2.h" 00051 #include "DiagArray2.cc" 00052 00053 template class OCTAVE_API DiagArray2<double>; 00054 00055 /* 00056 ;;; Local Variables: *** 00057 ;;; mode: C++ *** 00058 ;;; End: *** 00059 */