| 40 | using namespace std; |
| 41 | |
| 42 | VectorFilter::VectorFilter(void) |
| 43 | : ptable(NULL), |
| 44 | flag_(FILTER_OUT) |
| 45 | { |
| 46 | //Nothing to do |
| 47 | } |
| 48 | |
| 49 | VectorFilter::VectorFilter(DistributionTable *table) |
| 50 | : ptable(table), |
nothing calls this directly
no outgoing calls
no test coverage detected