Important: The information in this document is obsolete and should not be used for new development.
AddCyberItemToLog
Adds a Cyberdog item to the log.
void AddCyberItemToLog (in CyberItem parent, in CyberItem child);
parent
- The
CyberItem
object's parent if one exists; otherwise,kODNULL
.child
- The
CyberItem
object to be added.DISCUSSION
This method should add a Cyberdog item to the log. You should not call this method directly; to add a Cyberdog item to the log, you should callCyberSession::AddCyberItemToLog
, which calls this method.If you subclass
CyberLogExtension
, you must override this method. Your override must not call its inherited method; that is, your override method must implement this method's functionality completely.SEE ALSO
TheCyberSession::AddCyberItemToLog
method (page 351).