. */ /** * @brief Contains the Security Object (herits of the BaseObject class) * * * @file * @author Claire Figueras * @date $date$ * @version $Revision$ * @ingroup core */ // Loads the required class try { require_once("core/class/BaseObject.php"); } catch (Exception $e){ echo $e->getMessage().' // '; } /** * @brief Security Object, herits of the BaseObject class * * @ingroup core */ class SecurityObj extends BaseObject { /** * Returns the string representing the Security object * * @return string The security label (maarch_comment) */ function __toString() { return $this->maarch_comment ; } }