<?php
/* AUTOR / AUTHOR : LUIS QUIJADA SERRANO
/* FECHA / DATE : 7/03/2002.
/* VERSION : 1.0
/*
/* PACKAGE : RGB / CSSColor process.
/*
/* P L E A S E R E A D T H E D O C U M E N T A T I O N F I L E S * */
define("RGB_R", 1 );
define("RGB_G", 2 );
define("RGB_B", 4 );
define("RGB_MAYOR", 8 );
define("RGB_ES", 1);
define("RGB_EN", 2);
require_once("rgb_esp.class.php");
require_once("rgb_eng.class.php");
class RGB
{
function RGB($idioma)
{
if (($idioma & RGB_ES)===RGB_ES) $this = new RGB_Esp();
if (($idioma & RGB_EN)===RGB_EN) $this = new RGB_Eng(new RGB_Esp());
}
function _RGB()
{
}
}
?>