| 84 | } |
| 85 | |
| 86 | void cDataSource::allocMat(int n, int t) |
| 87 | { |
| 88 | if (mat_ != NULL) { delete mat_; } |
| 89 | bool noTimeMeta = writer_->getLevelConfig()->noTimeMeta; |
| 90 | mat_ = new cMatrix(n,t,noTimeMeta); |
| 91 | } |
| 92 | |
| 93 | void cDataSource::myFetchConfig() |
| 94 | { |
nothing calls this directly
no test coverage detected