| 45 | AbsProgramGenerator *AbsProgramGenerator::current_generator_ = NULL; |
| 46 | |
| 47 | OutputMgr * |
| 48 | AbsProgramGenerator::GetOutputMgr() |
| 49 | { |
| 50 | assert(current_generator_); |
| 51 | return current_generator_->getOutputMgr(); |
| 52 | } |
| 53 | |
| 54 | AbsProgramGenerator * |
| 55 | AbsProgramGenerator::CreateInstance(int argc, char *argv[], unsigned long seed) |
nothing calls this directly
no test coverage detected