DeclarationContextDO

/**
* @brief DO class: Not modeling this for now becasue except OMPDeclareMapperDecl, \n
all declaration context are also inherited from Decl \n
This is used only as base class of specific decl types that can act as declaration contexts
*/

Primary key: oid: int

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

DeclarationContextDO::getPrintableText

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

DeclarationContextDO::__all__

Data constraint method.

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