NamedDeclarationDO

/**
* @brief DO class: This represents a decl that may have a name
*/

Primary key: oid: int

schema NamedDeclarationDO {
  @primary oid: int,
  name: string,
  printable_text: string
}

NamedDeclarationDO::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: NamedDeclarationDO) -> string;

NamedDeclarationDO::__all__

Data constraint method.

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

NamedDeclarationDO::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: NamedDeclarationDO) -> string;