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