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
*/
pub fn getTagDeclarationOid(self: TagTypeDO) -> int;

TagTypeDO::__all__

Data constraint method.

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