Leandro Lucarella ------------------------------------------------------------------------------- $Id$ -----------------------------------------------------------------------------*/ /** * Base class for all MLIB_Widget classes. * * @todo Add a global example using all the methods. * @author Leandro Lucarella * @author Martín Marrese * @since 1.0 */ class MLIB_Widget_Base /** * Draws in the screen the "converted" widget * * @return void. * @todo Add an example. */ function draw() { echo $this->__toString(); } } ?>