CxxMethodDeclarationDO

/**
* @brief DO class: Represents a static or instance method of a struct/union/class.
*/

Primary key: oid: int

schema CxxMethodDeclarationDO {
  @primary oid: int,
  parent_oid: int,
  printable_text: string
}

CxxMethodDeclarationDO::__all__

Data constraint method.

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

CxxMethodDeclarationDO::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: CxxMethodDeclarationDO) -> string;

CxxMethodDeclarationDO::getParentOid

/**
* @brief the parent of this method declaration, which is the class in which this method is defined.
* @return int
*/
pub fn getParentOid(self: CxxMethodDeclarationDO) -> int;