EmptyLineDO

/**
*
* @brief DO class: An empty line.
*/

Primary key: oid: int

schema EmptyLineDO {
  @primary oid: int,
  location_oid: int,
  file_oid: int
}

EmptyLineDO::getFileOid

/**
* @brief gets the file oid of this element.
* @return int
*/
pub fn getFileOid(self: EmptyLineDO) -> int;

EmptyLineDO::__all__

Data constraint method.

pub fn __all__(db: PropertiesDB) -> *EmptyLineDO;

EmptyLineDO::getLocationOid

/**
* @brief gets the location oid of this element.
* @return int
*/
pub fn getLocationOid(self: EmptyLineDO) -> int;