<?php
/**
* Dom namespace class
*
* @package frea-framework
* @subpackage Template
*
* @copyright 2009 frea-framework
* @author Dawid Kraczkowski hide@address.com
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
*/
abstract class Template_Dom_Namespace
{
protected $node;
public $starttagLine;
public $endtagLine;
public function __construct(Template_Dom_Node &$node,$starttagLine=0,$endtagLine=0)
{
$this->starttagLine = $starttagLine;
$this->endtagLine = $endtagLine;
$this->node = $node;
}
public function init() {}
public function preprocessor() {}
abstract public function insertBefore();
abstract public function insertAfter();
}