ObjCImplementationDeclarationDO

/**
* @brief DO class: An obj c implementation declaration.
*/

Primary key: oid: int

schema ObjCImplementationDeclarationDO {
  @primary oid: int,
  is_category: int,
  printable_text: string
}

ObjCImplementationDeclarationDO::getPrintableText

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

ObjCImplementationDeclarationDO::__all__

Data constraint method.

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

ObjCImplementationDeclarationDO::getIsCategory

/**
* @brief gets the is category of this element.
* @return int
*/
pub fn getIsCategory(self: ObjCImplementationDeclarationDO) -> int;