<?php
/**
 * Prolog plug-in : Rule-based System for Groupware.
 * 
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     Paweł Kupka <pawel.kupka@gmail.com>
 */
require_once('prolog_tag.php');

class AttributeMaxRunTime extends PrologTag {

	var $name = 'maxruntime';

	/**
	 * Constructor
	 */
	function AttributeMaxRunTime() 
	{
			$this->setAttributePattern($this->name);
	}
}
?>