| 64 | // Small helper function to delete all elements in a T** array using delete |
| 65 | template <typename T> |
| 66 | inline void ArrayDelete(T **&in, unsigned int &num) { |
| 67 | for (unsigned int i = 0; i < num; ++i) |
| 68 | delete in[i]; |
| 69 | |
| 70 | delete[] in; |
| 71 | in = nullptr; |
| 72 | num = 0; |
| 73 | } |
| 74 | |
| 75 | // ------------------------------------------------------------------------------------------------ |
| 76 | // Executes the post processing step on the given imported data. |
no outgoing calls
no test coverage detected