1<?php
2/**
3 * Prolog plug-in : Rule-based System for Groupware.
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Paweł Kupka <pawel.kupka@gmail.com>
7 */
8require_once('prolog_tag.php');
9
10class AttributeMaxRunTime extends PrologTag {
11
12	var $name = 'maxruntime';
13
14	/**
15	 * Constructor
16	 */
17	function AttributeMaxRunTime()
18	{
19			$this->setAttributePattern($this->name);
20	}
21}
22?>