Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifdef HAVE_CONFIG_H
00024 #include <config.h>
00025 #endif
00026
00027 #include "oct-inttypes.h"
00028
00029
00030
00031 #include "MArray.h"
00032 #include "MArray.cc"
00033
00034 template class OCTAVE_API MArray<int>;
00035 template class OCTAVE_API MArray<long>;
00036
00037
00038
00039 template int xmin<int> (int, int);
00040 template int xmax<int> (int, int);
00041 template long xmin<long> (long, long);
00042 template long xmax<long> (long, long);
00043
00044 INSTANTIATE_MARRAY_FRIENDS (int, OCTAVE_API)
00045 INSTANTIATE_MARRAY_FRIENDS (long, OCTAVE_API)
00046
00047 template class OCTAVE_API MArray<octave_int8>;
00048 template class OCTAVE_API MArray<octave_int16>;
00049 template class OCTAVE_API MArray<octave_int32>;
00050 template class OCTAVE_API MArray<octave_int64>;
00051
00052 INSTANTIATE_MARRAY_FRIENDS (octave_int8, OCTAVE_API)
00053 INSTANTIATE_MARRAY_FRIENDS (octave_int16, OCTAVE_API)
00054 INSTANTIATE_MARRAY_FRIENDS (octave_int32, OCTAVE_API)
00055 INSTANTIATE_MARRAY_FRIENDS (octave_int64, OCTAVE_API)
00056
00057 template class OCTAVE_API MArray<octave_uint8>;
00058 template class OCTAVE_API MArray<octave_uint16>;
00059 template class OCTAVE_API MArray<octave_uint32>;
00060 template class OCTAVE_API MArray<octave_uint64>;
00061
00062 INSTANTIATE_MARRAY_FRIENDS (octave_uint8, OCTAVE_API)
00063 INSTANTIATE_MARRAY_FRIENDS (octave_uint16, OCTAVE_API)
00064 INSTANTIATE_MARRAY_FRIENDS (octave_uint32, OCTAVE_API)
00065 INSTANTIATE_MARRAY_FRIENDS (octave_uint64, OCTAVE_API)
00066
00067 #include "MDiagArray2.h"
00068 #include "MDiagArray2.cc"
00069
00070 template class OCTAVE_API MDiagArray2<int>;
00071
00072 INSTANTIATE_MDIAGARRAY2_FRIENDS (int, OCTAVE_API)