Changes to Existing Classes
The member function OwnedTypeP getNextQuietly(); has been added to the classes IlsUsesList::Iterator and IlsOwnsList::Iterator.
OwnedTypeP getNextQuietly(); This member function provides quick access to the next element of the list accessible through this iterator. It should not be used to evaluate a derived data member or to retrieve a value when using Rogue Wave® Server transactions.
This method returns a null pointer when the end of the list is reached.
Example:
IlsSmartPointer<Domain> d;
IlsOwnsList<Network, Domain>::Iterator iter(network->domains);
while (iter) {
d = iter.getNextQuietly();
if (d) {
// ...
}
}
Version 6.3
Copyright © 2018, Rogue Wave Software, Inc. All Rights Reserved.