From 1f09b786730956d01c48a82272617a0f8b2597f0 Mon Sep 17 00:00:00 2001 From: "ctrlaltca@gmail.com" <> Date: Sat, 19 Nov 2011 11:05:46 +0000 Subject: updating phpDocumentor, part 1: removal of the old version --- .../PhpDocumentor/phpDocumentor/EventStack.inc | 78 ---------------------- 1 file changed, 78 deletions(-) delete mode 100644 buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc (limited to 'buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc') diff --git a/buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc b/buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc deleted file mode 100644 index 5e2690e8..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/EventStack.inc +++ /dev/null @@ -1,78 +0,0 @@ - - * @version $Id: EventStack.inc,v 1.1 2005/10/17 18:36:55 jeichorn Exp $ - * @package phpDocumentor - */ -/** - * An event Stack - * - * @author Joshua Eichorn - * @version $Id: EventStack.inc,v 1.1 2005/10/17 18:36:55 jeichorn Exp $ - * @package phpDocumentor - */ -class EventStack -{ - /** - * The stack - * @var array - */ - var $stack = array(PARSER_EVENT_NOEVENTS); - - /** - * The number of events in the stack - * @var integer - */ - var $num = 0; - - /** - * Push an event onto the stack - * - * @param int $event All events must be constants - */ - function pushEvent($event) - { - $this->num = array_push($this->stack,$event) - 1; - } - - /** - * Pop an event from the stack - * - * @return int An event - */ - function popEvent() - { - $this->num--; - return array_pop($this->stack); - } - - /** - * Get the current event - * - * @return int An event - */ - function getEvent() - { - return $this->stack[$this->num]; - } -} -- cgit v1.2.3