<?php

include_once(dirname(__FILE__).'/../Base/System.php');
include_once(dirname(__FILE__).'/CustomOutput.php');

class Application extends System
{
  var $DefaultModule = 'Main';
  
  function __construct()
  {
    parent::__construct();
    $this->Output = new CustomOutput($this);
    
    $this->Type->RegisterType('YesNo', 'Enumeration', array('Ano', 'Ne'));
    $this->Type->RegisterType('NoYes', 'Enumeration', array('Ne', 'Ano'));

    //Header('Content-type: application/xhtml+xml');
  }
}

?>
