ObjCInterfaceDeclarationDO

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

Primary key: oid: int

schema ObjCInterfaceDeclarationDO {
  @primary oid: int,
  super_class_obj_c_interface_declaration_oid: int,
  is_definition: int,
  printable_text: string
}

ObjCInterfaceDeclarationDO::getIsDefinition

/**
* @brief Determine whether this particular declaration of this class is actually also a definition.
* @return int
*/
pub fn getIsDefinition(self: ObjCInterfaceDeclarationDO) -> int;

ObjCInterfaceDeclarationDO::__all__

Data constraint method.

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

ObjCInterfaceDeclarationDO::getPrintableText

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

ObjCInterfaceDeclarationDO::getSuperClassObjCInterfaceDeclarationOid

/**
* @brief Get super class (of type obj_c_interface_declaration)
* @return int
*/
pub fn getSuperClassObjCInterfaceDeclarationOid(self: ObjCInterfaceDeclarationDO) -> int;