. * * Consult LICENSE file for details ************************************************/ interface IChanges { /** * Constructor * * @throws StatusException */ /** * Initializes the state and flags * * @param string $state * @param int $flags * * @access public * @return boolean status flag * @throws StatusException */ public function Config($state, $flags = 0); /** * Reads and returns the current state * * @access public * @return string */ public function GetState(); } ?>