TagTypeDO
/**
* @brief DO class: Represents a struct/union/class/enum type in C/C++
*/
Primary key: oid: int
schema TagTypeDO {
@primary oid: int,
tag_declaration_oid: int
}
TagTypeDO::getTagDeclarationOid
/**
* @brief gets the tag declaration oid of this element.
* @return int
*/
- Parameter
self
:TagTypeDO
- Return
int
pub fn getTagDeclarationOid(self: TagTypeDO) -> int;
TagTypeDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*TagTypeDO
pub fn __all__(db: CfamilyDB) -> *TagTypeDO;