
inherits
NAME
inherits - return list of inherited programs
SYNOPSIS
string *inherits(object ob)
DESCRIPTION
Return a list of programs an object inherits. The auto object is
always included in the list since everything inherits it (with the
exception of the driver object).
EXAMPLE
Consider an object with the following code:
inherit "kernel/foo";
With this object inherits would return:
({ AUTO_OBJECT, "kernel/foo" })
SEE ALSO
HTMLised 1998 Greg Lewis
(glewis@maths.adelaide.edu.au)