annotate src/Array-tc.cc @ 1179:f070efd56c3d

[project @ 1995-03-23 21:45:33 by jwe]
author jwe
date Thu, 23 Mar 1995 21:45:33 +0000
parents 7dbf5bb19bde
children 611d403c7f3d
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
1009
dfe01093f657 [project @ 1995-01-04 04:05:12 by jwe]
jwe
parents: 754
diff changeset
4 Copyright (C) 1993, 1994, 1995 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
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
20 Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
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
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
29 #include "tree-const.h"
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 ArrayRep<int>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
32 extern template class Array<int>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
33 extern template class Array2<int>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
34 extern template class DiagArray<int>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
35
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
36 extern template class ArrayRep<double>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
37 extern template class Array<double>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
38 extern template class Array2<double>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
39 extern template class DiagArray<double>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
40
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
41 extern template class ArrayRep<Complex>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
42 extern template class Array<Complex>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
43 extern template class Array2<Complex>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
44 extern template class DiagArray<Complex>;
7dbf5bb19bde [project @ 1995-01-18 15:06:19 by jwe]
jwe
parents: 1009
diff changeset
45
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
46 template class ArrayRep<tree_constant>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
47 template class Array<tree_constant>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
48
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
49 /*
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
50 ;;; Local Variables: ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
51 ;;; mode: C++ ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
52 ;;; page-delimiter: "^/\\*" ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
53 ;;; End: ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
54 */