+<?php
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// +--------------------------------------------------------------------+
+// | Ministerio de EconomÃa |
+// | AI (Administrador de Intranet) |
+// +--------------------------------------------------------------------+
+// | This file is part of AI. |
+// | |
+// | AI is free software; you can redistribute it and/or modify |
+// | it under the terms of the GNU General Public License as published |
+// | by the Free Software Foundation; either version 2 of the License, |
+// | or (at your option) any later version. |
+// | |
+// | AI is distributed in the hope that it will be useful, but |
+// | WITHOUT ANY WARRANTY; without even the implied warranty of |
+// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
+// | General Public License for more details. |
+// | |
+// | You should have received a copy of the GNU General Public License |
+// | along with Hooks; if not, write to the Free Software Foundation, |
+// | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
+// +--------------------------------------------------------------------+
+// | Creado: Wed Jul 2 17:53:43 2003 |
+// | Autor: Leandro Lucarella <llucar@mecon.gov.ar> |
+// +--------------------------------------------------------------------+
+//
+// $Id$
+//
+
+// +X2C includes
+require_once 'DB.php';
+// ~X2C
+
+// +X2C Class 503 :AIDB
+/**
+ * Base de datos del Administrador de Intranet.
+ *
+ * @access public
+ */
+class AIDB extends DB {
+ // ~X2C
+
+ // +X2C Operation 506
+ /**
+ * @return &mixed
+ * @access public
+ */
+ function &connect() // ~X2C
+ {
+ $conf = parse_ini_file(dirname(__FILE__) . '/../conf/AIDB.ini', true);
+ return DB::connect($conf['dsn'], $conf['opciones']);
+ }
+ // -X2C
+
+} // -X2C Class :AIDB
+
+?>
\ No newline at end of file