#ifndef _TEMPARRAY_H_ #define _TEMPARRAY_H_ #include "Cubehole.h" class Temparray { public: Temparray(float initialtemp, int size0[3]){ teperature = new float[size0[0]][size0[0]][size0[0]][4][6]; cubearray = new Cubehole[size0[0]][size0[0]][size0[0]]; } ~Temparray(){ delete[] temperature; delete[] cubearray; } private: float *temperature = 0; Cubehole *cubearray = 0; }; #endif /* _TEMPARRAY_H_ */