ClassHierarchyDO

/**
* @brief DO class: class inheritance
*/

Primary key: child_oid: int

schema ClassHierarchyDO {
  @primary child_oid: int,
  parent_oid: int
}

ClassHierarchyDO::getParentOid

/**
* @brief gets the parent oid of this element.
* @return int
*/
pub fn getParentOid(self: ClassHierarchyDO) -> int;

ClassHierarchyDO::__all__

Data constraint method.

pub fn __all__(db: CfamilyDB) -> *ClassHierarchyDO;