| 63 | } |
| 64 | |
| 65 | SyncServer::SyncServer (int argc, ACE_TCHAR* argv[]) |
| 66 | : pub_count_ (1), sub_count_ (1) |
| 67 | { |
| 68 | try |
| 69 | { |
| 70 | this->parse_args (argc, argv); |
| 71 | |
| 72 | sync_server_.reset (new SyncServer_i (pub_count_, sub_count_ |
| 73 | , CORBA::ORB::_nil())); |
| 74 | } |
| 75 | catch (SyncServer_i::InitError& e) { |
| 76 | throw InitError (e); |
| 77 | } |
| 78 | catch ( CORBA::Exception& ex) { |
| 79 | throw InitError (ex._info().c_str()); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | bool |
| 84 | SyncServer::run (void) |
nothing calls this directly
no test coverage detected