#include #include #ifdef EXPLICIT_TEMPLATE_INSTANTIATION template void delete_c_array2(int**); template int** new_c_array2(int,int,int); template int** new_zero_c_array2(int,int,int); template void delete_c_array3(int***); template int*** new_c_array3(int,int,int,int); template int*** new_zero_c_array3(int,int,int,int); template void delete_c_array2(double**); template double** new_c_array2(int,int,double); template double** new_zero_c_array2(int,int,double); template void delete_c_array3(double***); template double*** new_c_array3(int,int,int,double); template double*** new_zero_c_array3(int,int,int,double); #endif