Changeset 21023 for juggler/branches/2.2/modules/tweek
- Timestamp:
- 02/09/08 22:09:54 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/branches/2.2/modules/tweek/tweek/CORBA/CorbaManager.h
r20634 r21023 73 73 74 74 /** 75 * Initializes the ORB and POA associated with this object. A child POA of 76 * the root POA (RootPOA) is created, and all servants registered with this 77 * manager are activated within that child POA. 75 * Initializes the ORB and POA associated with this object for use with the 76 * CORBA Naming Service. A child POA of the root POA (RootPOA) is created, 77 * and all servants registered with this manager are activated within that 78 * child POA. 79 * 80 * @pre This CorbaManager object has not been initialized previously. 78 81 * 79 82 * @param localID A string providing a unique identifier for the local 80 * POA. 83 * POA. When used, "tweek_" will be prepended to this 84 * value, but user-level code should generally not need 85 * to worry aubot that detail. 81 86 * @param argc The size of the following argument vector. This will 82 87 * be modified if any elements are removed from argv. … … 99 104 * the Naming Service. Common values are "1.0" and 100 105 * "1.2". It defaults to "1.0". 106 * 107 * @return \c true is returned if initialization completes successfully. 108 * Otherwise, \c false is returned. 101 109 */ 102 110 bool init(const std::string& localID, int& argc, char** argv, … … 209 217 } // End of tweek namespace 210 218 219 211 220 #endif /* _TWEEK_CORBA_MANAGER_H_ */
