Type
/**
* @filename: TYPE
* @date: 2022/02/11
* @brief: TYPE provides classes and predicates for working with C family types
*/
Inherit from TypeDO
Primary key: oid: int
schema Type extends TypeDO {
@primary oid: int,
kind_name: string,
printable_text: string
}
Type::getKindName
/**
* @brief Type kind name
* @return string
*/
- Parameter
self
:Type
- Return
string
pub fn getKindName(self: Type) -> string;
Type::__all__
Data constraint method.
pub fn __all__(db: CfamilyDB) -> *Type;
Type::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:Type
- Return
string
pub fn getPrintableText(self: Type) -> string;