/**
  * TemplatePower::TemplatePower()
  *
  * @param $tpl_file
  * @param $type
  * @return
  *
  * @access public
  */
 function TemplatePower($tpl_file = '', $type = T_BYFILE)
 {
     TemplatePowerParser::TemplatePowerParser($tpl_file, $type);
     $this->prepared = false;
     $this->showUnAssigned = false;
     $this->serialized = false;
     //added: 26 April 2002
 }
 function TPLSerializer($tpl_file, $stpl_file)
 {
     $this->stpl_file = $stpl_file;
     TemplatePowerParser::TemplatePowerParser($tpl_file, T_BYFILE);
 }