liboctave/Array-ch.cc
Go to the documentation of this file.00001 /* 00002 00003 Copyright (C) 1995, 1996, 1997, 1998, 2001, 2003, 2004, 2005, 2006, 00004 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 char values. 00029 00030 #include "Array.h" 00031 #include "Array.cc" 00032 00033 INSTANTIATE_ARRAY_AND_ASSIGN (char, OCTAVE_API); 00034 00035 #include "Array2.h" 00036 00037 template class OCTAVE_API Array2<char>; 00038 00039 #include "ArrayN.h" 00040 #include "ArrayN.cc" 00041 00042 template class OCTAVE_API ArrayN<char>; 00043 00044 template OCTAVE_API std::ostream& operator << (std::ostream&, const ArrayN<char>&); 00045 00046 #include "DiagArray2.h" 00047 #include "DiagArray2.cc" 00048 00049 template class OCTAVE_API DiagArray2<char>; 00050 00051 /* 00052 ;;; Local Variables: *** 00053 ;;; mode: C++ *** 00054 ;;; End: *** 00055 */