// File: tdtest15b.cpp // // This file will be compiled separately. // Other file used: tdtest15a.cpp // // #include "twodim15.h" void conv(TwoDimArray& A, TwoDimArray& B) { for (unsigned int i=0 ; i < 10 ; i++) { for (unsigned int j=0 ; j < 10 ; j++) { A[i][j] = (int) B[i][j] ; } } }