- Timestamp:
- 06/12/07 10:30:49 (18 months ago)
- Location:
- branches/3.0-Beta2/components/tools/OmeroCpp/src/OMERO
- Files:
-
- 2 modified
-
Model/PermissionsI.cpp (modified) (1 diff)
-
client.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0-Beta2/components/tools/OmeroCpp/src/OMERO/Model/PermissionsI.cpp
r1510 r1630 74 74 } 75 75 void PermissionsI::setLocked(bool value, const Ice::Current& c) { 76 set(1,18,!value); // Here we use the granted76 set(1,18,!value); // Here we use the set 77 77 // logic but without a shift. The not is because 78 78 // flags are stored with reverse semantics. -
branches/3.0-Beta2/components/tools/OmeroCpp/src/OMERO/client.h
r1569 r1630 64 64 * with the reserved prefixes, however, override all other values. 65 65 */ 66 client(int& argc, char* argv[], 67 const Ice::InitializationData& id = Ice::InitializationData());66 client(int& argc, char* argv[], 67 const Ice::InitializationData& id = Ice::InitializationData()); 68 68 69 69 /* 70 * Destroys the session and the communicator instances. 70 * Destroys the communicator instance. To have the session destroyed, 71 * call close on the client before destruction. Otherwise, the session 72 * will be destroyed by the server on timeout. 71 73 */ 72 74 ~client(); … … 82 84 // Session management 83 85 84 /* 86 /* 85 87 * Creates a session. Calling this method while a session is 86 88 * active will throw an exception. It should only be used again, … … 141 143 142 144 143 /* 145 /* 144 146 * The callback is currently unused. Rather, this is an example of 145 147 * what a callback would look like.
