| 34 | // =========================================================================== |
| 35 | |
| 36 | ClientProperties::ClientProperties() { |
| 37 | _batchSize = dvbcsa_bs_batch_size(); |
| 38 | _batch = new dvbcsa_bs_batch_s[_batchSize + 1]; |
| 39 | _ts = new dvbcsa_bs_batch_s[_batchSize + 1]; |
| 40 | _batchCount = 0; |
| 41 | _parity = 0; |
| 42 | } |
| 43 | |
| 44 | ClientProperties::~ClientProperties() { |
| 45 | DELETE_ARRAY(_batch); |
nothing calls this directly
no outgoing calls
no test coverage detected