DeclaratorDeclarationDO

/**
* @brief DO class: Represents a ValueDecl that came out of a declarator. \n
Contains type source information through TypeSourceInfo.
*/

Primary key: oid: int

schema DeclaratorDeclarationDO {
  @primary oid: int,
  printable_text: string
}

DeclaratorDeclarationDO::getPrintableText

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

DeclaratorDeclarationDO::__all__

Data constraint method.

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