X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/834bee1cf2c5bd122b3e941c70b5c2f03ee80a27..c999981d89604785bf449249f63429f57f336fff:/lib/MLIB/Tiempo/Intervalo.php diff --git a/lib/MLIB/Tiempo/Intervalo.php b/lib/MLIB/Tiempo/Intervalo.php index 0cc2068..04c55e9 100644 --- a/lib/MLIB/Tiempo/Intervalo.php +++ b/lib/MLIB/Tiempo/Intervalo.php @@ -1,16 +1,15 @@ $Id$ -----------------------------------------------------------------------------*/ -require_once 'MECON/Tiempo/Hora.php'; +require_once 'MLIB/Tiempo/Hora.php'; /** * Representa un Intervalo entre 2 horas del mismo dia @@ -33,7 +32,7 @@ require_once 'MECON/Tiempo/Hora.php'; * @version $Rev$ * @author Gonzalo Merayo */ -class MECON_Tiempo_Intervalo { +class MLIB_Tiempo_Intervalo { /** * * Hora de inicio del intervalo @@ -59,13 +58,13 @@ class MECON_Tiempo_Intervalo { * fin es anterior a la de inicio. * */ - function MECON_Tiempo_Intervalo($inicio = null, $fin = null, $chequear = true) + function MLIB_Tiempo_Intervalo($inicio = null, $fin = null, $chequear = true) { if (!$inicio) { - $inicio = new MECON_Tiempo_Hora; + $inicio = new MLIB_Tiempo_Hora; } if (!$fin) { - $fin = new MECON_Tiempo_Hora; + $fin = new MLIB_Tiempo_Hora; } $this->inicio = $inicio; $this->fin = $fin; @@ -109,7 +108,7 @@ class MECON_Tiempo_Intervalo { function getDuracion() { - $c = new MECON_Tiempo_Hora; + $c = new MLIB_Tiempo_Hora; $c->copy($this->fin); $c->subtract($this->inicio); return $c; @@ -196,9 +195,9 @@ class MECON_Tiempo_Intervalo { */ function cortar($c) { - if(is_a($c, 'mecon_tiempo_hora')) { + if(is_a($c, 'MLIB_tiempo_hora')) { return $this->cortarHora($c); - } elseif (is_a($c, 'mecon_tiempo_intervalo')) { + } elseif (is_a($c, 'MLIB_tiempo_intervalo')) { return $this->cortarIntervalo($c); } else { return false;