FieldDeclarationDO

/**
* @brief DO class: Represents a member variable of a C++ struct/union/class.
*/

Primary key: oid: int

schema FieldDeclarationDO {
  @primary oid: int,
  type_oid: int,
  record_oid: int,
  printable_text: string
}

FieldDeclarationDO::getPrintableText

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

FieldDeclarationDO::getRecordOid

/**
* @brief gets the record oid of this element.
* @return int
*/
pub fn getRecordOid(self: FieldDeclarationDO) -> int;

FieldDeclarationDO::__all__

Data constraint method.

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

FieldDeclarationDO::getTypeOid

/**
* @brief gets the type oid of this element.
* @return int
*/
pub fn getTypeOid(self: FieldDeclarationDO) -> int;