CxxRecordDeclaration
Inherit from RecordDeclaration
Primary key: oid: int
schema CxxRecordDeclaration extends RecordDeclaration {
@primary oid: int,
parent_oid: int,
index_order: int,
location_oid: int,
kind_name: string,
printable_text: string
}
CxxRecordDeclaration::getParentOid
/**
* @brief gets the parent oid of this element.
* @return int
*/
- Parameter
self
:CxxRecordDeclaration
- Return
int
pub fn getParentOid(self: CxxRecordDeclaration) -> int;
CxxRecordDeclaration::isDefinition
/**
* @description If the tag declaration is a definition declaration
* @return int
*/
- Parameter
self
:CxxRecordDeclaration
- Return
int
pub fn isDefinition(self: CxxRecordDeclaration) -> int;
CxxRecordDeclaration::getIndexOrder
/**
* @brief gets the index order of this element.
* @return int
*/
- Parameter
self
:CxxRecordDeclaration
- Return
int
pub fn getIndexOrder(self: CxxRecordDeclaration) -> int;
CxxRecordDeclaration::getLocationOid
/**
* @brief gets the location oid of this element.
* @return int
*/
- Parameter
self
:CxxRecordDeclaration
- Return
int
pub fn getLocationOid(self: CxxRecordDeclaration) -> int;
CxxRecordDeclaration::getName
/**
* @brief gets the name of the named declaration.
* @return string
*/
- Parameter
self
:CxxRecordDeclaration
- Return
string
pub fn getName(self: CxxRecordDeclaration) -> string;
CxxRecordDeclaration::getTagKind
/**
* @brief gets the tag kind of the tag declaration.
* @return string
*/
- Parameter
self
:CxxRecordDeclaration
- Return
string
pub fn getTagKind(self: CxxRecordDeclaration) -> string;
CxxRecordDeclaration::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return ElementParent
*/
- Parameter
self
:CxxRecordDeclaration
- Return
*ElementParent
pub fn getAnAncestor(self: CxxRecordDeclaration) -> *ElementParent;
CxxRecordDeclaration::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*CxxRecordDeclaration
pub fn __all__(db: CfamilyDB) -> *CxxRecordDeclaration;
CxxRecordDeclaration::getLocation
/**
* @brief gets the location for the element.
* @return Location
*/
- Parameter
self
:CxxRecordDeclaration
- Return
Location
pub fn getLocation(self: CxxRecordDeclaration) -> Location;
CxxRecordDeclaration::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:CxxRecordDeclaration
- Return
string
pub fn getPrintableText(self: CxxRecordDeclaration) -> string;
CxxRecordDeclaration::getParent
/**
* @brief gets the parent element of the declaration
* @return ElementParent
*/
- Parameter
self
:CxxRecordDeclaration
- Return
ElementParent
pub fn getParent(self: CxxRecordDeclaration) -> ElementParent;
CxxRecordDeclaration::getKindName
/**
* @brief Declaration kind name
* @return string
*/
- Parameter
self
:CxxRecordDeclaration
- Return
string
pub fn getKindName(self: CxxRecordDeclaration) -> string;