Mercurial > hg > octave-nkf
comparison liboctave/Array-ch.cc @ 1989:a4b0826e240c
[project @ 1996-03-02 00:33:22 by jwe]
author | jwe |
---|---|
date | Sat, 02 Mar 1996 00:34:12 +0000 |
parents | 1281a23a34dd |
children | 1b57120c997b |
comparison
equal
deleted
inserted
replaced
1988:7b56630a1e05 | 1989:a4b0826e240c |
---|---|
21 | 21 |
22 */ | 22 */ |
23 | 23 |
24 // Instantiate Arrays of char values. | 24 // Instantiate Arrays of char values. |
25 | 25 |
26 #define NO_DIAG_ARRAY 1 | |
27 | |
28 #include "Array.h" | 26 #include "Array.h" |
29 #include "Array.cc" | 27 #include "Array.cc" |
30 | 28 |
31 template class Array<char>; | 29 template class Array<char>; |
32 template class Array2<char>; | |
33 | |
34 #ifndef NO_DIAG_ARRAY | |
35 template class DiagArray<char>; | |
36 #endif | |
37 | 30 |
38 template void assign (Array<char>&, const Array<char>&); | 31 template void assign (Array<char>&, const Array<char>&); |
39 | 32 |
33 #include "Array2.h" | |
34 #include "Array2.cc" | |
35 | |
36 template class Array2<char>; | |
37 | |
40 template void assign (Array2<char>&, const Array2<char>&); | 38 template void assign (Array2<char>&, const Array2<char>&); |
39 | |
40 #include "DiagArray2.h" | |
41 #include "DiagArray2.cc" | |
42 | |
43 template class DiagArray2<char>; | |
41 | 44 |
42 /* | 45 /* |
43 ;;; Local Variables: *** | 46 ;;; Local Variables: *** |
44 ;;; mode: C++ *** | 47 ;;; mode: C++ *** |
45 ;;; page-delimiter: "^/\\*" *** | 48 ;;; page-delimiter: "^/\\*" *** |