Daylight v4.9 Release Date: 1 February 2008 Namedt_ancestor - retrieve the ancestor object of an objectGeneric Prototypedt_ancestor(dt_Handle) => dt_HandleC Prototype#include "dt_smiles.h"dt_Handle dt_ancestor(dt_Handle object) FORTRAN Prototypeinclude 'dt_f_smiles.inc'integer*4 dt_f_ancestor(object) integer*4 object DescriptionGets the ancestor object of the specified object 'object'. The ancestor is the ultimate base/parent/grandparent of a given object. The ancestor is the root of a hierarchy of related objects.The ancestor may be used as a representitive of a collection of inter- dependent objects. Examples are for multithreading, where the ancestor is the object which should be locked/unlocked using mutexes to control object access. Interestingly, if an ancestor object is deallocated, all of it's related dependent objects get deallocated. Return ValueReturns the handle of the ancestor object. The ancestor may be itself. Returns NULL_OB if the given argument is invalid.Related Topicsdt_base(3) dt_parent(3) |