ObjCObjectType

Inherit from Type

Primary key: oid: int

schema ObjCObjectType extends Type {
  @primary oid: int,
  kind_name: string,
  printable_text: string
}

ObjCObjectType::getPrintableText

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

ObjCObjectType::__all__

Data constraint method.

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

ObjCObjectType::getKindName

/**
* @brief Type kind name
* @return string
*/
pub fn getKindName(self: ObjCObjectType) -> string;

ObjCObjectType::getObjCInterfaceDeclaration

/**
* @brief gets the obj c interface declaration of this element.
* @return ObjCInterfaceDeclaration
*/
pub fn getObjCInterfaceDeclaration(self: ObjCObjectType) -> ObjCInterfaceDeclaration;