annotate src/Array-tc.cc @ 1884:e62277bf5fe0

[project @ 1996-02-05 18:17:59 by jwe]
author jwe
date Mon, 05 Feb 1996 18:20:17 +0000
parents a02f140ed897
children 6df7b42db205
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
1 // Array-tc.cc -*- C++ -*-
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
2 /*
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
3
1884
e62277bf5fe0 [project @ 1996-02-05 18:17:59 by jwe]
jwe
parents: 1742
diff changeset
4 Copyright (C) 1996 John W. Eaton
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
5
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
6 This file is part of Octave.
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
7
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
8 Octave is free software; you can redistribute it and/or modify it
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
11 later version.
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
12
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
13 Octave is distributed in the hope that it will be useful, but WITHOUT
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
16 for more details.
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
17
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
19 along with Octave; see the file COPYING. If not, write to the Free
1315
611d403c7f3d [project @ 1995-06-25 19:56:32 by jwe]
jwe
parents: 1041
diff changeset
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
21
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
22 */
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
23
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
24 // Instantiate Arrays of tree_constants.
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
25
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
26 #include "Array.h"
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
27 #include "Array.cc"
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
28
1742
a02f140ed897 [project @ 1996-01-12 11:09:39 by jwe]
jwe
parents: 1736
diff changeset
29 #include "pt-const.h"
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
30
1041
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
31 extern template class Array<int>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
32 extern template class Array2<int>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
33 extern template class DiagArray<int>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
34
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
35 extern template class Array<double>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
36 extern template class Array2<double>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
37 extern template class DiagArray<double>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
38
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
39 extern template class Array<Complex>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
40 extern template class Array2<Complex>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
41 extern template class DiagArray<Complex>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
42
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
43 template class Array<tree_constant>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
44
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
45 /*
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
46 ;;; Local Variables: ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
47 ;;; mode: C++ ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
48 ;;; page-delimiter: "^/\\*" ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
49 ;;; End: ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
50 */