CxxRecordDeclarationDO
/**
* @brief DO class: Represents a C++ struct/union/class. Its base classes will be recorded to class hierarchy
*/
Primary key: oid: int
schema CxxRecordDeclarationDO {
@primary oid: int,
printable_text: string
}
CxxRecordDeclarationDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:CxxRecordDeclarationDO
- Return
string
pub fn getPrintableText(self: CxxRecordDeclarationDO) -> string;
CxxRecordDeclarationDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*CxxRecordDeclarationDO
pub fn __all__(db: CfamilyDB) -> *CxxRecordDeclarationDO;