Size constructor
| 3 | |
| 4 | // Size constructor |
| 5 | Farray::Farray(int nrows, int ncols) : |
| 6 | _nrows(nrows), _ncols(ncols), _buffer(0) |
| 7 | { |
| 8 | allocateMemory(); |
| 9 | } |
| 10 | |
| 11 | // Copy constructor |
| 12 | Farray::Farray(const Farray & source) : |
no outgoing calls
no test coverage detected