Changeset 20634
- Timestamp:
- 08/08/07 10:10:51 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/branches/2.2/modules/tweek/tweek/CORBA/CorbaManager.cpp
r20633 r20634 81 81 } 82 82 83 bool CorbaManager::init(const std::string& local _id, int& argc, char** argv,83 bool CorbaManager::init(const std::string& localID, int& argc, char** argv, 84 84 const std::string& nsHost, const vpr::Uint16& nsPort, 85 85 const std::string& iiopVersion) … … 101 101 mORB = CORBA::ORB_init(argc, argv, TWEEK_ORB_VER_STRING); 102 102 103 status = createChildPOA(local _id);103 status = createChildPOA(localID); 104 104 105 105 try … … 413 413 // ============================================================================ 414 414 415 bool CorbaManager::createChildPOA(const std::string& local _id)415 bool CorbaManager::createChildPOA(const std::string& localID) 416 416 { 417 417 bool status(true); … … 445 445 PortableServer::ThreadPolicy::_duplicate(thread_policy); 446 446 447 std::string poa_name = "tweek_" + local _id;447 std::string poa_name = "tweek_" + localID; 448 448 449 449 try juggler/branches/2.2/modules/tweek/tweek/CORBA/CorbaManager.h
r20633 r20634 77 77 * manager are activated within that child POA. 78 78 * 79 * @param localI dA string providing a unique identifier for the local79 * @param localID A string providing a unique identifier for the local 80 80 * POA. 81 81 * @param argc The size of the following argument vector. This will … … 100 100 * "1.2". It defaults to "1.0". 101 101 */ 102 bool init(const std::string& localI d, int& argc, char** argv,102 bool init(const std::string& localID, int& argc, char** argv, 103 103 const std::string& nsHost = std::string(""), 104 104 const vpr::Uint16& nsPort = vpr::Uint16(2809), … … 111 111 * they are destroyed and shut down. 112 112 * 113 * @param wait _for_completion If true, block until all pending requests and114 * events are completed. This parameter is115 * optional and defaults to true.116 */ 117 void shutdown(bool wait _for_completion = true);113 * @param waitForCompletion If true, block until all pending requests and 114 * events are completed. This parameter is 115 * optional and defaults to true. 116 */ 117 void shutdown(bool waitForCompletion = true); 118 118 119 119 /** … … 185 185 186 186 private: 187 bool createChildPOA(const std::string& local _id);187 bool createChildPOA(const std::string& localID); 188 188 189 189 std::string mAppName;
