| 38 | |
| 39 | |
| 40 | void |
| 41 | PubDriver::run(int& argc, ACE_TCHAR* argv[]) |
| 42 | { |
| 43 | DBG_ENTRY_LVL("PubDriver","run",6); |
| 44 | |
| 45 | DDS::DomainParticipantFactory_var dpf = |
| 46 | TheParticipantFactoryWithArgs(argc, argv); |
| 47 | |
| 48 | this->parse_args(argc, argv); |
| 49 | this->init(); |
| 50 | this->run(); |
| 51 | } |
| 52 | |
| 53 | |
| 54 | void |
nothing calls this directly
no test coverage detected