| 12 | #include "polyx.h" |
| 13 | |
| 14 | SingleEndProcessor::SingleEndProcessor(Options* opt){ |
| 15 | mOptions = opt; |
| 16 | mReaderFinished = false; |
| 17 | mFinishedThreads = 0; |
| 18 | mFilter = new Filter(opt); |
| 19 | mLeftWriter = NULL; |
| 20 | mFailedWriter = NULL; |
| 21 | |
| 22 | mPackReadCounter = 0; |
| 23 | mPackProcessedCounter = 0; |
| 24 | |
| 25 | mReadPool = new ReadPool(mOptions); |
| 26 | } |
| 27 | |
| 28 | SingleEndProcessor::~SingleEndProcessor() { |
| 29 | delete mFilter; |
nothing calls this directly
no outgoing calls
no test coverage detected